From 22a94785ed917f4ee96e72d37925d7725f94390a Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 12:29:10 +0700 Subject: [PATCH 01/10] scan: remove divided by 1e6 in graphql parser --- .../account/AccountIndexDelegations.re | 4 +-- scan/src/pages/AccountIndexPage.re | 26 ++++++++++++++----- scan/src/subscriptions/GraphQLParser.re | 9 +++---- scan/src/subscriptions/ValidatorSub.re | 4 +-- 4 files changed, 27 insertions(+), 16 deletions(-) diff --git a/scan/src/components/account/AccountIndexDelegations.re b/scan/src/components/account/AccountIndexDelegations.re index ebcf06b39d..5897735d40 100644 --- a/scan/src/components/account/AccountIndexDelegations.re +++ b/scan/src/components/account/AccountIndexDelegations.re @@ -83,12 +83,12 @@ let make = (~address) =>
- Format.fPretty} code=true /> + Format.fPretty} code=true />
- Format.fPretty} code=true /> + Format.fPretty} code=true />
diff --git a/scan/src/pages/AccountIndexPage.re b/scan/src/pages/AccountIndexPage.re index f81ca818ad..d2b15d881e 100644 --- a/scan/src/pages/AccountIndexPage.re +++ b/scan/src/pages/AccountIndexPage.re @@ -125,7 +125,12 @@ let make = (~address, ~hashtag: Route.account_tab_t) => let availableBalance = account.balance->Coin.getBandAmountFromCoins; let usdPrice = info.financial.usdPrice; - let totalBalance = availableBalance +. balanceAtStake.amount +. balanceAtStake.reward; + let totalBalance = + availableBalance + +. balanceAtStake.amount + /. 1_000_000. + +. balanceAtStake.reward + /. 1_000_000.; <> @@ -147,11 +152,18 @@ let make = (~address, ~hashtag: Route.account_tab_t) => -
+
+ +
- + @@ -165,16 +177,16 @@ let make = (~address, ~hashtag: Route.account_tab_t) => {balanceDetail( "BALANCE AT STAKE", - balanceAtStake.amount |> Format.fPretty, - balanceAtStake.amount *. usdPrice |> Format.fPretty, + balanceAtStake.amount /. 1_000_000. |> Format.fPretty, + balanceAtStake.amount /. 1_000_000. *. usdPrice |> Format.fPretty, Colors.chartBalanceAtStake, )} {balanceDetail( "REWARD", - balanceAtStake.reward |> Format.fPretty, - balanceAtStake.reward *. usdPrice |> Format.fPretty, + balanceAtStake.reward /. 1_000_000. |> Format.fPretty, + balanceAtStake.reward /. 1_000_000. *. usdPrice |> Format.fPretty, Colors.chartReward, )} diff --git a/scan/src/subscriptions/GraphQLParser.re b/scan/src/subscriptions/GraphQLParser.re index aeafd90506..613ef5844c 100644 --- a/scan/src/subscriptions/GraphQLParser.re +++ b/scan/src/subscriptions/GraphQLParser.re @@ -37,15 +37,14 @@ let addressExn = jsonOpt => jsonOpt |> Belt_Option.getExn |> Address.fromBech32; // TODO: remove 1e6. let numberExn = jsonOpt => - (jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getExn) /. 1_000_000.; + jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getExn; let numberWithDefault = jsonOpt => - (jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getWithDefault(_, 0.0)) - /. 1_000_000.; + jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getWithDefault(_, 0.0); let floatWithDefault = jsonOpt => jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getWithDefault(_, 0.); -let floatWithMillionDivision = json => { - (json |> Js.Json.decodeNumber |> Belt.Option.getExn) /. 1_000_000.; +let floatExn = json => { + json |> Js.Json.decodeNumber |> Belt.Option.getExn; }; diff --git a/scan/src/subscriptions/ValidatorSub.re b/scan/src/subscriptions/ValidatorSub.re index 708d801254..e766bb3f7b 100644 --- a/scan/src/subscriptions/ValidatorSub.re +++ b/scan/src/subscriptions/ValidatorSub.re @@ -89,7 +89,7 @@ module SingleConfig = [%graphql moniker identity website - tokens @bsDecoder(fn: "GraphQLParser.floatWithMillionDivision") + tokens @bsDecoder(fn: "GraphQLParser.floatExn") commissionRate: commission_rate @bsDecoder(fn: "float_of_string") consensusPubKey: consensus_pubkey @bsDecoder(fn: "PubKey.fromBech32") bondedHeight: bonded_height @bsDecoder(fn: "GraphQLParser.int64") @@ -109,7 +109,7 @@ module MultiConfig = [%graphql moniker identity website - tokens @bsDecoder(fn: "GraphQLParser.floatWithMillionDivision") + tokens @bsDecoder(fn: "GraphQLParser.floatExn") commissionRate: commission_rate @bsDecoder(fn: "float_of_string") consensusPubKey: consensus_pubkey @bsDecoder(fn: "PubKey.fromBech32") bondedHeight: bonded_height @bsDecoder(fn: "GraphQLParser.int64") From c1f16b66955354f5446dd77ad8b7735f3bbd51ef Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 14:53:27 +0700 Subject: [PATCH 02/10] fixed: merge conflict --- scan/src/pages/ValidatorHomePage.re | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scan/src/pages/ValidatorHomePage.re b/scan/src/pages/ValidatorHomePage.re index 0ff9f853a2..efb17fc1cf 100644 --- a/scan/src/pages/ValidatorHomePage.re +++ b/scan/src/pages/ValidatorHomePage.re @@ -128,7 +128,7 @@ let renderBody = | Data({tokens, votingPower}) =>
Format.fPretty} + value={tokens /. 1_000_000. |> Format.fPretty} color=Colors.gray7 code=true weight=Text.Regular @@ -353,7 +353,7 @@ let make = () => { int_of_float, + bondedTokenCount /. 1_000_000. |> int_of_float, metadata.totalSupply->Coin.getBandAmountFromCoins |> int_of_float, true, ) From 25f37459647565598a0c6c4e105296ad79778ed8 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 16:30:24 +0700 Subject: [PATCH 03/10] updated: amount and rewards to use coin type --- .../account/AccountIndexDelegations.re | 10 ++++-- .../components/validator/DelegatorsTable.re | 2 +- scan/src/pages/AccountIndexPage.re | 31 +++++++------------ scan/src/pages/ValidatorHomePage.re | 10 ++++-- scan/src/pages/ValidatorIndexPage.re | 5 ++- scan/src/subscriptions/DelegationSub.re | 22 +++++++------ scan/src/subscriptions/GraphQLParser.re | 9 ++++++ scan/src/subscriptions/ValidatorSub.re | 12 +++---- 8 files changed, 60 insertions(+), 41 deletions(-) diff --git a/scan/src/components/account/AccountIndexDelegations.re b/scan/src/components/account/AccountIndexDelegations.re index 5897735d40..f8e4eaf95a 100644 --- a/scan/src/components/account/AccountIndexDelegations.re +++ b/scan/src/components/account/AccountIndexDelegations.re @@ -83,12 +83,18 @@ let make = (~address) =>
- Format.fPretty} code=true /> + Coin.getBandAmountFromCoin |> Format.fPretty} + code=true + />
- Format.fPretty} code=true /> + Coin.getBandAmountFromCoin |> Format.fPretty} + code=true + />
diff --git a/scan/src/components/validator/DelegatorsTable.re b/scan/src/components/validator/DelegatorsTable.re index 5a6f14b958..2b3e98fd66 100644 --- a/scan/src/components/validator/DelegatorsTable.re +++ b/scan/src/components/validator/DelegatorsTable.re @@ -110,7 +110,7 @@ let make = (~address) =>
Format.fPretty} + value={amount |> Coin.getBandAmountFromCoin |> Format.fPretty} size=Text.Md weight=Text.Regular color=Colors.gray7 diff --git a/scan/src/pages/AccountIndexPage.re b/scan/src/pages/AccountIndexPage.re index d2b15d881e..934305582d 100644 --- a/scan/src/pages/AccountIndexPage.re +++ b/scan/src/pages/AccountIndexPage.re @@ -41,7 +41,7 @@ module Styles = { let totalBalance = style([display(`flex), flexDirection(`column), alignItems(`flexEnd)]); }; -let balanceDetail = (title, amount, amountUsd, color) => { +let balanceDetail = (title, amount, usdPrice, color) => {
@@ -51,7 +51,7 @@ let balanceDetail = (title, amount, amountUsd, color) => {
Format.fPretty} size=Text.Lg weight=Text.Semibold spacing={Text.Em(0.02)} @@ -71,7 +71,7 @@ let balanceDetail = (title, amount, amountUsd, color) => {
Format.fPretty} size=Text.Sm spacing={Text.Em(0.02)} weight=Text.Thin @@ -127,10 +127,8 @@ let make = (~address, ~hashtag: Route.account_tab_t) => let usdPrice = info.financial.usdPrice; let totalBalance = availableBalance - +. balanceAtStake.amount - /. 1_000_000. - +. balanceAtStake.reward - /. 1_000_000.; + +. balanceAtStake.amount->Coin.getBandAmountFromCoin + +. balanceAtStake.reward->Coin.getBandAmountFromCoin; <> @@ -161,32 +159,27 @@ let make = (~address, ~hashtag: Route.account_tab_t) => Coin.getBandAmountFromCoin} + reward={balanceAtStake.reward->Coin.getBandAmountFromCoin} /> - {balanceDetail( - "AVAILABLE BALANCE", - availableBalance |> Format.fPretty, - availableBalance *. usdPrice |> Format.fPretty, - Colors.bandBlue, - )} + {balanceDetail("AVAILABLE BALANCE", availableBalance, usdPrice, Colors.bandBlue)} {balanceDetail( "BALANCE AT STAKE", - balanceAtStake.amount /. 1_000_000. |> Format.fPretty, - balanceAtStake.amount /. 1_000_000. *. usdPrice |> Format.fPretty, + balanceAtStake.amount->Coin.getBandAmountFromCoin, + usdPrice, Colors.chartBalanceAtStake, )} {balanceDetail( "REWARD", - balanceAtStake.reward /. 1_000_000. |> Format.fPretty, - balanceAtStake.reward /. 1_000_000. *. usdPrice |> Format.fPretty, + balanceAtStake.reward->Coin.getBandAmountFromCoin, + usdPrice, Colors.chartReward, )} diff --git a/scan/src/pages/ValidatorHomePage.re b/scan/src/pages/ValidatorHomePage.re index efb17fc1cf..4c8b398b37 100644 --- a/scan/src/pages/ValidatorHomePage.re +++ b/scan/src/pages/ValidatorHomePage.re @@ -128,7 +128,7 @@ let renderBody = | Data({tokens, votingPower}) =>
Format.fPretty} + value={tokens |> Coin.getBandAmountFromCoin |> Format.fPretty} color=Colors.gray7 code=true weight=Text.Regular @@ -353,7 +353,7 @@ let make = () => { int_of_float, + bondedTokenCount |> Coin.getBandAmountFromCoin |> int_of_float, metadata.totalSupply->Coin.getBandAmountFromCoins |> int_of_float, true, ) @@ -437,7 +437,11 @@ let make = () => { {validators->Belt_Array.size > 0 ? validators ->Belt_Array.mapWithIndex((i, e) => - renderBody(i + 1 + (page - 1) * pageSize, Sub.resolve(e), bondedTokenCount) + renderBody( + i + 1 + (page - 1) * pageSize, + Sub.resolve(e), + bondedTokenCount.amount, + ) ) ->React.array :
diff --git a/scan/src/pages/ValidatorIndexPage.re b/scan/src/pages/ValidatorIndexPage.re index cdac85d66a..a667b718ee 100644 --- a/scan/src/pages/ValidatorIndexPage.re +++ b/scan/src/pages/ValidatorIndexPage.re @@ -143,7 +143,10 @@ let make = (~address, ~hashtag: Route.validator_tab_t) => {kvRow( "VOTING POWER", VCode( - (bondedTokenCount > 0. ? validator.votingPower *. 100. /. bondedTokenCount : 0.) + ( + bondedTokenCount.amount > 0. + ? validator.votingPower *. 100. /. bondedTokenCount.amount : 0. + ) ->Format.fPretty ++ "% (" ++ validator.votingPower->Format.fPretty diff --git a/scan/src/subscriptions/DelegationSub.re b/scan/src/subscriptions/DelegationSub.re index 6a8f4f9b2d..3c828b2879 100644 --- a/scan/src/subscriptions/DelegationSub.re +++ b/scan/src/subscriptions/DelegationSub.re @@ -5,24 +5,24 @@ type t = { }; type stake_t = { - amount: float, - reward: float, + amount: Coin.t, + reward: Coin.t, sharePercentage: float, delegatorAddress: Address.t, validatorAddress: Address.t, }; type stake_aggregate_t = { - amount: float, - reward: float, + amount: Coin.t, + reward: Coin.t, }; module StakeConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $delegator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {delegator_address: {_eq: $delegator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.numberExn") - reward @bsDecoder(fn: "GraphQLParser.numberExn") + amount @bsDecoder(fn: "GraphQLParser.coinOpt") + reward @bsDecoder(fn: "GraphQLParser.coinOpt") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") @@ -62,8 +62,8 @@ module DelegatorsByValidatorConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $validator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {validator_address: {_eq: $validator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.numberExn") - reward @bsDecoder(fn: "GraphQLParser.numberExn") + amount @bsDecoder(fn: "GraphQLParser.coinOpt") + reward @bsDecoder(fn: "GraphQLParser.coinOpt") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") @@ -119,7 +119,11 @@ let getTotalStakeByDelegator = delegatorAddress => { ); let%Sub delegatorInfo = delegatorInfoSub; - {amount: delegatorInfo##amount, reward: delegatorInfo##reward} |> Sub.resolve; + { + amount: delegatorInfo##amount |> Coin.newUBANDFromAmount, + reward: delegatorInfo##reward |> Coin.newUBANDFromAmount, + } + |> Sub.resolve; }; let getStakeCountByDelegator = delegatorAddress => { diff --git a/scan/src/subscriptions/GraphQLParser.re b/scan/src/subscriptions/GraphQLParser.re index 613ef5844c..63864373c7 100644 --- a/scan/src/subscriptions/GraphQLParser.re +++ b/scan/src/subscriptions/GraphQLParser.re @@ -17,6 +17,15 @@ let hash = json => json |> Js.Json.decodeString |> Belt.Option.getExn |> Js.String.substr(~from=2) |> Hash.fromHex; let coinRegEx = "([0-9]+)([a-z][a-z0-9/]{2,31})" |> Js.Re.fromString; +let coin = str => { + str |> Js.Json.decodeNumber |> Belt_Option.getExn |> Coin.newUBANDFromAmount; +}; +let coinOpt = jsonOpt => { + jsonOpt + |> Belt_Option.flatMap(_, Js.Json.decodeNumber) + |> Belt.Option.getWithDefault(_, 0.0) + |> Coin.newUBANDFromAmount; +}; let coins = str => str |> Js.String.split(",") diff --git a/scan/src/subscriptions/ValidatorSub.re b/scan/src/subscriptions/ValidatorSub.re index e766bb3f7b..09aec1fe09 100644 --- a/scan/src/subscriptions/ValidatorSub.re +++ b/scan/src/subscriptions/ValidatorSub.re @@ -12,7 +12,7 @@ type internal_t = { moniker: string, identity: string, website: string, - tokens: float, + tokens: Coin.t, commissionRate: float, consensusPubKey: PubKey.t, bondedHeight: int, @@ -31,7 +31,7 @@ type t = { identity: string, website: string, details: string, - tokens: float, + tokens: Coin.t, commission: float, bondedHeight: int, completedRequestCount: int, @@ -59,7 +59,7 @@ let toExternal = operatorAddress, consensusAddress, consensusPubKey, - votingPower: tokens, + votingPower: tokens.amount, moniker, identity, website, @@ -89,7 +89,7 @@ module SingleConfig = [%graphql moniker identity website - tokens @bsDecoder(fn: "GraphQLParser.floatExn") + tokens @bsDecoder(fn: "GraphQLParser.coin") commissionRate: commission_rate @bsDecoder(fn: "float_of_string") consensusPubKey: consensus_pubkey @bsDecoder(fn: "PubKey.fromBech32") bondedHeight: bonded_height @bsDecoder(fn: "GraphQLParser.int64") @@ -109,7 +109,7 @@ module MultiConfig = [%graphql moniker identity website - tokens @bsDecoder(fn: "GraphQLParser.floatExn") + tokens @bsDecoder(fn: "GraphQLParser.coin") commissionRate: commission_rate @bsDecoder(fn: "float_of_string") consensusPubKey: consensus_pubkey @bsDecoder(fn: "PubKey.fromBech32") bondedHeight: bonded_height @bsDecoder(fn: "GraphQLParser.int64") @@ -126,7 +126,7 @@ module TotalBondedAmountConfig = [%graphql validators_aggregate{ aggregate{ sum{ - tokens @bsDecoder(fn: "GraphQLParser.numberWithDefault") + tokens @bsDecoder(fn: "GraphQLParser.coinOpt") } } } From f5bcbe090732c32e45841e0e014adc96223effd5 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 16:50:26 +0700 Subject: [PATCH 04/10] fixed: graphql coin usage --- scan/src/subscriptions/DelegationSub.re | 18 +++++++----------- scan/src/subscriptions/GraphQLParser.re | 6 +----- scan/src/subscriptions/ValidatorSub.re | 2 +- 3 files changed, 9 insertions(+), 17 deletions(-) diff --git a/scan/src/subscriptions/DelegationSub.re b/scan/src/subscriptions/DelegationSub.re index 3c828b2879..e5ffc53d1d 100644 --- a/scan/src/subscriptions/DelegationSub.re +++ b/scan/src/subscriptions/DelegationSub.re @@ -21,8 +21,8 @@ module StakeConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $delegator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {delegator_address: {_eq: $delegator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.coinOpt") - reward @bsDecoder(fn: "GraphQLParser.coinOpt") + amount @bsDecoder(fn: "GraphQLParser.coinWithDefault") + reward @bsDecoder(fn: "GraphQLParser.coinWithDefault") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") @@ -37,8 +37,8 @@ module TotalStakeByDelegatorConfig = [%graphql delegations_view_aggregate(where: {delegator_address: {_eq: $delegator_address}}){ aggregate{ sum{ - amount @bsDecoder(fn: "GraphQLParser.numberWithDefault") - reward @bsDecoder(fn: "GraphQLParser.numberWithDefault") + amount @bsDecoder(fn: "GraphQLParser.coinWithDefault") + reward @bsDecoder(fn: "GraphQLParser.coinWithDefault") } } } @@ -62,8 +62,8 @@ module DelegatorsByValidatorConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $validator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {validator_address: {_eq: $validator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.coinOpt") - reward @bsDecoder(fn: "GraphQLParser.coinOpt") + amount @bsDecoder(fn: "GraphQLParser.coinWithDefault") + reward @bsDecoder(fn: "GraphQLParser.coinWithDefault") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") @@ -119,11 +119,7 @@ let getTotalStakeByDelegator = delegatorAddress => { ); let%Sub delegatorInfo = delegatorInfoSub; - { - amount: delegatorInfo##amount |> Coin.newUBANDFromAmount, - reward: delegatorInfo##reward |> Coin.newUBANDFromAmount, - } - |> Sub.resolve; + {amount: delegatorInfo##amount, reward: delegatorInfo##reward} |> Sub.resolve; }; let getStakeCountByDelegator = delegatorAddress => { diff --git a/scan/src/subscriptions/GraphQLParser.re b/scan/src/subscriptions/GraphQLParser.re index 63864373c7..e419810ce8 100644 --- a/scan/src/subscriptions/GraphQLParser.re +++ b/scan/src/subscriptions/GraphQLParser.re @@ -20,7 +20,7 @@ let coinRegEx = "([0-9]+)([a-z][a-z0-9/]{2,31})" |> Js.Re.fromString; let coin = str => { str |> Js.Json.decodeNumber |> Belt_Option.getExn |> Coin.newUBANDFromAmount; }; -let coinOpt = jsonOpt => { +let coinWithDefault = jsonOpt => { jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getWithDefault(_, 0.0) @@ -44,10 +44,6 @@ let coins = str => let addressExn = jsonOpt => jsonOpt |> Belt_Option.getExn |> Address.fromBech32; -// TODO: remove 1e6. -let numberExn = jsonOpt => - jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getExn; - let numberWithDefault = jsonOpt => jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) |> Belt.Option.getWithDefault(_, 0.0); diff --git a/scan/src/subscriptions/ValidatorSub.re b/scan/src/subscriptions/ValidatorSub.re index 09aec1fe09..ca47060aa0 100644 --- a/scan/src/subscriptions/ValidatorSub.re +++ b/scan/src/subscriptions/ValidatorSub.re @@ -126,7 +126,7 @@ module TotalBondedAmountConfig = [%graphql validators_aggregate{ aggregate{ sum{ - tokens @bsDecoder(fn: "GraphQLParser.coinOpt") + tokens @bsDecoder(fn: "GraphQLParser.coinWithDefault") } } } From 7e75822b8773af5b045c39a0a1cfd225b6cd042b Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 17:51:01 +0700 Subject: [PATCH 05/10] scan: added unbonding amount to accountindexpage --- scan/graphql_schema.json | 42400 +++++++++++++---------- scan/src/components/PieChart.re | 6 +- scan/src/pages/AccountIndexPage.re | 22 +- scan/src/subscriptions/UnbondingSub.re | 34 + 4 files changed, 23756 insertions(+), 18706 deletions(-) create mode 100644 scan/src/subscriptions/UnbondingSub.re diff --git a/scan/graphql_schema.json b/scan/graphql_schema.json index 623e2315e6..44eaf6a2e5 100644 --- a/scan/graphql_schema.json +++ b/scan/graphql_schema.json @@ -216,6 +216,123 @@ "description": null, "fields": null }, + { + "inputFields": [ + { + "name": "_eq", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_gt", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_gte", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_in", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "_is_null", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + }, + { + "name": "_lt", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_lte", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_neq", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "name": "_nin", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "Int_comparison_exp", + "enumValues": null, + "description": "expression to compare columns of type Int. All fields are combined with logical 'AND'.", + "fields": null + }, { "inputFields": null, "kind": "SCALAR", @@ -1582,6 +1699,180 @@ }, "description": "An aggregated array relationship" }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "unbonding_delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "unbonding_delegations", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "unbonding_delegations", + "ofType": null + } + } + } + }, + "description": "An array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "unbonding_delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "unbonding_delegations_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "unbonding_delegations_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" + }, { "args": [], "isDeprecated": false, @@ -2107,6 +2398,16 @@ }, "description": null }, + { + "name": "unbonding_delegations", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": null + }, { "name": "updated_height", "defaultValue": null, @@ -2161,7 +2462,7 @@ "interfaces": null, "name": "accounts_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"accounts\"", + "description": "input type for incrementing integer column in table \"accounts\"", "fields": null }, { @@ -2206,6 +2507,16 @@ }, "description": null }, + { + "name": "unbonding_delegations", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_arr_rel_insert_input", + "ofType": null + }, + "description": null + }, { "name": "updated_height", "defaultValue": null, @@ -2586,6 +2897,16 @@ }, "description": null }, + { + "name": "unbonding_delegations_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_aggregate_order_by", + "ofType": null + }, + "description": null + }, { "name": "updated_height", "defaultValue": null, @@ -2605,6 +2926,31 @@ "description": "ordering options when selecting data from \"accounts\"", "fields": null }, + { + "inputFields": [ + { + "name": "address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "accounts_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"accounts\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -3180,180 +3526,6 @@ }, "description": null }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "packets", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "packets", - "ofType": null - } - } - } - }, - "description": "An array relationship" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "packets_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "packets_aggregate", - "ofType": null - } - }, - "description": "An aggregated array relationship" - }, { "args": [], "isDeprecated": false, @@ -4087,16 +4259,6 @@ }, "description": null }, - { - "name": "packets", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - }, - "description": null - }, { "name": "proposer", "defaultValue": null, @@ -4191,7 +4353,7 @@ "interfaces": null, "name": "blocks_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"blocks\"", + "description": "input type for incrementing integer column in table \"blocks\"", "fields": null }, { @@ -4216,16 +4378,6 @@ }, "description": null }, - { - "name": "packets", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_arr_rel_insert_input", - "ofType": null - }, - "description": null - }, { "name": "proposer", "defaultValue": null, @@ -4616,16 +4768,6 @@ }, "description": null }, - { - "name": "packets_aggregate", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_aggregate_order_by", - "ofType": null - }, - "description": null - }, { "name": "proposer", "defaultValue": null, @@ -4675,6 +4817,31 @@ "description": "ordering options when selecting data from \"blocks\"", "fields": null }, + { + "inputFields": [ + { + "name": "height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "blocks_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"blocks\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -6203,7 +6370,7 @@ "interfaces": null, "name": "data_source_revisions_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"data_source_revisions\"", + "description": "input type for incrementing integer column in table \"data_source_revisions\"", "fields": null }, { @@ -6795,6 +6962,45 @@ "description": "ordering options when selecting data from \"data_source_revisions\"", "fields": null }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "data_source_revisions_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"data_source_revisions\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -7945,6 +8151,22 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "fee", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -8878,6 +9100,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -8992,7 +9224,7 @@ "interfaces": null, "name": "data_sources_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"data_sources\"", + "description": "input type for incrementing integer column in table \"data_sources\"", "fields": null }, { @@ -9027,6 +9259,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -9117,6 +9359,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -9179,6 +9433,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -9249,6 +9513,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -9311,6 +9587,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -9535,6 +9821,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -9604,6 +9900,31 @@ "description": "ordering options when selecting data from \"data_sources\"", "fields": null }, + { + "inputFields": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "data_sources_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"data_sources\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -9623,6 +9944,12 @@ "name": "executable", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "fee", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, @@ -9673,6 +10000,16 @@ }, "description": null }, + { + "name": "fee", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, { "name": "id", "defaultValue": null, @@ -10005,6 +10342,12 @@ "name": "executable", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "fee", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, @@ -11176,6 +11519,45 @@ "description": "ordering options when selecting data from \"delegations\"", "fields": null }, + { + "inputFields": [ + { + "name": "delegator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "delegations_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"delegations\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -13743,6 +14125,31 @@ "description": "ordering options when selecting data from \"metadata\"", "fields": null }, + { + "inputFields": [ + { + "name": "key", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "metadata_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"metadata\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -13856,6 +14263,33 @@ }, "description": "delete data from the table: \"accounts\"" }, + { + "args": [ + { + "name": "address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_accounts_by_pk", + "type": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + }, + "description": "delete single row from the table: \"accounts\"" + }, { "args": [ { @@ -13883,6 +14317,33 @@ }, "description": "delete data from the table: \"blocks\"" }, + { + "args": [ + { + "name": "height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_blocks_by_pk", + "type": { + "kind": "OBJECT", + "name": "blocks", + "ofType": null + }, + "description": "delete single row from the table: \"blocks\"" + }, { "args": [ { @@ -13913,56 +14374,43 @@ { "args": [ { - "name": "where", + "name": "data_source_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "filter the rows which have to be deleted" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_data_sources", - "type": { - "kind": "OBJECT", - "name": "data_sources_mutation_response", - "ofType": null - }, - "description": "delete data from the table: \"data_sources\"" - }, - { - "args": [ + "description": null + }, { - "name": "where", + "name": "revision_number", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_delegations", + "name": "delete_data_source_revisions_by_pk", "type": { "kind": "OBJECT", - "name": "delegations_mutation_response", + "name": "data_source_revisions", "ofType": null }, - "description": "delete data from the table: \"delegations\"" + "description": "delete single row from the table: \"data_source_revisions\"" }, { "args": [ @@ -13974,7 +14422,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", + "name": "data_sources_bool_exp", "ofType": null } }, @@ -13983,40 +14431,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_metadata", + "name": "delete_data_sources", "type": { "kind": "OBJECT", - "name": "metadata_mutation_response", + "name": "data_sources_mutation_response", "ofType": null }, - "description": "delete data from the table: \"metadata\"" + "description": "delete data from the table: \"data_sources\"" }, { "args": [ { - "name": "where", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_script_revisions", + "name": "delete_data_sources_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "data_sources", "ofType": null }, - "description": "delete data from the table: \"oracle_script_revisions\"" + "description": "delete single row from the table: \"data_sources\"" }, { "args": [ @@ -14028,7 +14476,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "delegations_bool_exp", "ofType": null } }, @@ -14037,40 +14485,54 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_scripts", + "name": "delete_delegations", "type": { "kind": "OBJECT", - "name": "oracle_scripts_mutation_response", + "name": "delegations_mutation_response", "ofType": null }, - "description": "delete data from the table: \"oracle_scripts\"" + "description": "delete data from the table: \"delegations\"" }, { "args": [ { - "name": "where", + "name": "delegator_address", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_packets", + "name": "delete_delegations_by_pk", "type": { "kind": "OBJECT", - "name": "packets_mutation_response", + "name": "delegations", "ofType": null }, - "description": "delete data from the table: \"packets\"" + "description": "delete single row from the table: \"delegations\"" }, { "args": [ @@ -14082,7 +14544,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "metadata_bool_exp", "ofType": null } }, @@ -14091,40 +14553,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_raw_data_requests", + "name": "delete_metadata", "type": { "kind": "OBJECT", - "name": "raw_data_requests_mutation_response", + "name": "metadata_mutation_response", "ofType": null }, - "description": "delete data from the table: \"raw_data_requests\"" + "description": "delete data from the table: \"metadata\"" }, { "args": [ { - "name": "where", + "name": "key", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_related_data_sources", + "name": "delete_metadata_by_pk", "type": { "kind": "OBJECT", - "name": "related_data_sources_mutation_response", + "name": "metadata", "ofType": null }, - "description": "delete data from the table: \"related_data_sources\"" + "description": "delete single row from the table: \"metadata\"" }, { "args": [ @@ -14136,7 +14598,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "oracle_script_codes_bool_exp", "ofType": null } }, @@ -14145,40 +14607,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_report_details", + "name": "delete_oracle_script_codes", "type": { "kind": "OBJECT", - "name": "report_details_mutation_response", + "name": "oracle_script_codes_mutation_response", "ofType": null }, - "description": "delete data from the table: \"report_details\"" + "description": "delete data from the table: \"oracle_script_codes\"" }, { "args": [ { - "name": "where", + "name": "code_hash", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "SCALAR", + "name": "bytea", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_reports", + "name": "delete_oracle_script_codes_by_pk", "type": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "oracle_script_codes", "ofType": null }, - "description": "delete data from the table: \"reports\"" + "description": "delete single row from the table: \"oracle_script_codes\"" }, { "args": [ @@ -14190,7 +14652,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null } }, @@ -14199,40 +14661,54 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_requested_validators", + "name": "delete_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "requested_validators_mutation_response", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": "delete data from the table: \"requested_validators\"" + "description": "delete data from the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "where", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_requests", + "name": "delete_oracle_script_revisions_by_pk", "type": { "kind": "OBJECT", - "name": "requests_mutation_response", + "name": "oracle_script_revisions", "ofType": null }, - "description": "delete data from the table: \"requests\"" + "description": "delete single row from the table: \"oracle_script_revisions\"" }, { "args": [ @@ -14244,7 +14720,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null } }, @@ -14253,40 +14729,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_transactions", + "name": "delete_oracle_scripts", "type": { "kind": "OBJECT", - "name": "transactions_mutation_response", + "name": "oracle_scripts_mutation_response", "ofType": null }, - "description": "delete data from the table: \"transactions\"" + "description": "delete data from the table: \"oracle_scripts\"" }, { "args": [ { - "name": "where", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "filter the rows which have to be deleted" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_validator_votes", + "name": "delete_oracle_scripts_by_pk", "type": { "kind": "OBJECT", - "name": "validator_votes_mutation_response", + "name": "oracle_scripts", "ofType": null }, - "description": "delete data from the table: \"validator_votes\"" + "description": "delete single row from the table: \"oracle_scripts\"" }, { "args": [ @@ -14298,7 +14774,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", + "name": "raw_data_requests_bool_exp", "ofType": null } }, @@ -14307,508 +14783,597 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_validators", + "name": "delete_raw_data_requests", "type": { "kind": "OBJECT", - "name": "validators_mutation_response", + "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": "delete data from the table: \"validators\"" + "description": "delete data from the table: \"raw_data_requests\"" }, { "args": [ { - "name": "objects", + "name": "external_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "accounts_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "the rows to be inserted" + "description": null }, { - "name": "on_conflict", + "name": "request_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_accounts", + "name": "delete_raw_data_requests_by_pk", "type": { "kind": "OBJECT", - "name": "accounts_mutation_response", + "name": "raw_data_requests", "ofType": null }, - "description": "insert data into the table: \"accounts\"" + "description": "delete single row from the table: \"raw_data_requests\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "blocks_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_blocks", + "name": "delete_related_data_sources", "type": { "kind": "OBJECT", - "name": "blocks_mutation_response", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": "insert data into the table: \"blocks\"" + "description": "delete data from the table: \"related_data_sources\"" }, { "args": [ { - "name": "objects", + "name": "data_source_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "the rows to be inserted" + "description": null }, { - "name": "on_conflict", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_source_revisions", + "name": "delete_related_data_sources_by_pk", "type": { "kind": "OBJECT", - "name": "data_source_revisions_mutation_response", + "name": "related_data_sources", "ofType": null }, - "description": "insert data into the table: \"data_source_revisions\"" + "description": "delete single row from the table: \"related_data_sources\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_sources", + "name": "delete_report_details", "type": { "kind": "OBJECT", - "name": "data_sources_mutation_response", + "name": "report_details_mutation_response", "ofType": null }, - "description": "insert data into the table: \"data_sources\"" + "description": "delete data from the table: \"report_details\"" }, { "args": [ { - "name": "objects", + "name": "external_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "the rows to be inserted" + "description": null }, { - "name": "on_conflict", + "name": "request_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "on conflict condition" + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_delegations", + "name": "delete_report_details_by_pk", "type": { "kind": "OBJECT", - "name": "delegations_mutation_response", + "name": "report_details", "ofType": null }, - "description": "insert data into the table: \"delegations\"" + "description": "delete single row from the table: \"report_details\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_metadata", + "name": "delete_reports", "type": { "kind": "OBJECT", - "name": "metadata_mutation_response", + "name": "reports_mutation_response", "ofType": null }, - "description": "insert data into the table: \"metadata\"" + "description": "delete data from the table: \"reports\"" }, { "args": [ { - "name": "objects", + "name": "request_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "the rows to be inserted" + "description": null }, { - "name": "on_conflict", + "name": "validator", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_script_revisions", + "name": "delete_reports_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "reports", "ofType": null }, - "description": "insert data into the table: \"oracle_script_revisions\"" + "description": "delete single row from the table: \"reports\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_scripts", + "name": "delete_requested_validators", "type": { "kind": "OBJECT", - "name": "oracle_scripts_mutation_response", + "name": "requested_validators_mutation_response", "ofType": null }, - "description": "insert data into the table: \"oracle_scripts\"" + "description": "delete data from the table: \"requested_validators\"" }, { "args": [ { - "name": "objects", + "name": "request_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "the rows to be inserted" + "description": null }, { - "name": "on_conflict", + "name": "validator_address", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_packets", + "name": "delete_requested_validators_by_pk", "type": { "kind": "OBJECT", - "name": "packets_mutation_response", + "name": "requested_validators", "ofType": null }, - "description": "insert data into the table: \"packets\"" + "description": "delete single row from the table: \"requested_validators\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" - }, + "description": "filter the rows which have to be deleted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_requests", + "type": { + "kind": "OBJECT", + "name": "requests_mutation_response", + "ofType": null + }, + "description": "delete data from the table: \"requests\"" + }, + { + "args": [ { - "name": "on_conflict", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_raw_data_requests", + "name": "delete_requests_by_pk", "type": { "kind": "OBJECT", - "name": "raw_data_requests_mutation_response", + "name": "requests", "ofType": null }, - "description": "insert data into the table: \"raw_data_requests\"" + "description": "delete single row from the table: \"requests\"" }, { "args": [ { - "name": "objects", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null } }, - "description": "the rows to be inserted" + "description": "filter the rows which have to be deleted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_transactions", + "type": { + "kind": "OBJECT", + "name": "transactions_mutation_response", + "ofType": null + }, + "description": "delete data from the table: \"transactions\"" + }, + { + "args": [ + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_transactions_by_pk", + "type": { + "kind": "OBJECT", + "name": "transactions", + "ofType": null + }, + "description": "delete single row from the table: \"transactions\"" + }, + { + "args": [ + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be deleted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_unbonding_delegations", + "type": { + "kind": "OBJECT", + "name": "unbonding_delegations_mutation_response", + "ofType": null + }, + "description": "delete data from the table: \"unbonding_delegations\"" + }, + { + "args": [ + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be deleted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_validator_votes", + "type": { + "kind": "OBJECT", + "name": "validator_votes_mutation_response", + "ofType": null + }, + "description": "delete data from the table: \"validator_votes\"" + }, + { + "args": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null }, { - "name": "on_conflict", + "name": "consensus_address", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "description": "on conflict condition" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_related_data_sources", + "name": "delete_validator_votes_by_pk", "type": { "kind": "OBJECT", - "name": "related_data_sources_mutation_response", + "name": "validator_votes", "ofType": null }, - "description": "insert data into the table: \"related_data_sources\"" + "description": "delete single row from the table: \"validator_votes\"" + }, + { + "args": [ + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be deleted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_validators", + "type": { + "kind": "OBJECT", + "name": "validators_mutation_response", + "ofType": null + }, + "description": "delete data from the table: \"validators\"" + }, + { + "args": [ + { + "name": "operator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delete_validators_by_pk", + "type": { + "kind": "OBJECT", + "name": "validators", + "ofType": null + }, + "description": "delete single row from the table: \"validators\"" }, { "args": [ @@ -14826,7 +15391,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_insert_input", + "name": "accounts_insert_input", "ofType": null } } @@ -14839,7 +15404,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_on_conflict", + "name": "accounts_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -14847,44 +15412,36 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_report_details", + "name": "insert_accounts", "type": { "kind": "OBJECT", - "name": "report_details_mutation_response", + "name": "accounts_mutation_response", "ofType": null }, - "description": "insert data into the table: \"report_details\"" + "description": "insert data into the table: \"accounts\"" }, { "args": [ { - "name": "objects", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "accounts_insert_input", + "ofType": null } }, - "description": "the rows to be inserted" + "description": "the row to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", + "name": "accounts_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -14892,13 +15449,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_reports", + "name": "insert_accounts_one", "type": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "accounts", "ofType": null }, - "description": "insert data into the table: \"reports\"" + "description": "insert a single row into the table: \"accounts\"" }, { "args": [ @@ -14916,7 +15473,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_insert_input", + "name": "blocks_insert_input", "ofType": null } } @@ -14929,7 +15486,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_on_conflict", + "name": "blocks_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -14937,44 +15494,36 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_requested_validators", + "name": "insert_blocks", "type": { "kind": "OBJECT", - "name": "requested_validators_mutation_response", + "name": "blocks_mutation_response", "ofType": null }, - "description": "insert data into the table: \"requested_validators\"" + "description": "insert data into the table: \"blocks\"" }, { "args": [ { - "name": "objects", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "blocks_insert_input", + "ofType": null } }, - "description": "the rows to be inserted" + "description": "the row to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_on_conflict", + "name": "blocks_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -14982,13 +15531,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_requests", + "name": "insert_blocks_one", "type": { "kind": "OBJECT", - "name": "requests_mutation_response", + "name": "blocks", "ofType": null }, - "description": "insert data into the table: \"requests\"" + "description": "insert a single row into the table: \"blocks\"" }, { "args": [ @@ -15006,7 +15555,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_insert_input", + "name": "data_source_revisions_insert_input", "ofType": null } } @@ -15019,7 +15568,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_on_conflict", + "name": "data_source_revisions_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15027,44 +15576,36 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_transactions", + "name": "insert_data_source_revisions", "type": { "kind": "OBJECT", - "name": "transactions_mutation_response", + "name": "data_source_revisions_mutation_response", "ofType": null }, - "description": "insert data into the table: \"transactions\"" + "description": "insert data into the table: \"data_source_revisions\"" }, { "args": [ { - "name": "objects", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_insert_input", + "ofType": null } }, - "description": "the rows to be inserted" + "description": "the row to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validator_votes_on_conflict", + "name": "data_source_revisions_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15072,13 +15613,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_validator_votes", + "name": "insert_data_source_revisions_one", "type": { "kind": "OBJECT", - "name": "validator_votes_mutation_response", + "name": "data_source_revisions", "ofType": null }, - "description": "insert data into the table: \"validator_votes\"" + "description": "insert a single row into the table: \"data_source_revisions\"" }, { "args": [ @@ -15096,7 +15637,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "validators_insert_input", + "name": "data_sources_insert_input", "ofType": null } } @@ -15109,7 +15650,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_on_conflict", + "name": "data_sources_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15117,1878 +15658,3157 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_validators", + "name": "insert_data_sources", "type": { "kind": "OBJECT", - "name": "validators_mutation_response", + "name": "data_sources_mutation_response", "ofType": null }, - "description": "insert data into the table: \"validators\"" + "description": "insert data into the table: \"data_sources\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_set_input", + "name": "data_sources_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_accounts", + "name": "insert_data_sources_one", "type": { "kind": "OBJECT", - "name": "accounts_mutation_response", + "name": "data_sources", "ofType": null }, - "description": "update data of the table: \"accounts\"" + "description": "insert a single row into the table: \"data_sources\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_set_input", + "name": "delegations_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_blocks", + "name": "insert_delegations", "type": { "kind": "OBJECT", - "name": "blocks_mutation_response", + "name": "delegations_mutation_response", "ofType": null }, - "description": "update data of the table: \"blocks\"" + "description": "insert data into the table: \"delegations\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_set_input", + "name": "delegations_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_data_source_revisions", + "name": "insert_delegations_one", "type": { "kind": "OBJECT", - "name": "data_source_revisions_mutation_response", + "name": "delegations", "ofType": null }, - "description": "update data of the table: \"data_source_revisions\"" + "description": "insert a single row into the table: \"delegations\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_set_input", + "name": "metadata_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_data_sources", + "name": "insert_metadata", "type": { "kind": "OBJECT", - "name": "data_sources_mutation_response", + "name": "metadata_mutation_response", "ofType": null }, - "description": "update data of the table: \"data_sources\"" + "description": "insert data into the table: \"metadata\"" }, { "args": [ { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "name": "metadata_insert_input", "ofType": null } }, - "description": "filter the rows which have to be updated" + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "metadata_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_delegations", + "name": "insert_metadata_one", "type": { "kind": "OBJECT", - "name": "delegations_mutation_response", + "name": "metadata", "ofType": null }, - "description": "update data of the table: \"delegations\"" + "description": "insert a single row into the table: \"metadata\"" }, { "args": [ { - "name": "_set", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_insert_input", + "ofType": null + } + } + } }, - "description": "sets the columns of the filtered rows to the given values" + "description": "the rows to be inserted" }, { - "name": "where", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_on_conflict", + "ofType": null }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_metadata", + "name": "insert_oracle_script_codes", "type": { "kind": "OBJECT", - "name": "metadata_mutation_response", + "name": "oracle_script_codes_mutation_response", "ofType": null }, - "description": "update data of the table: \"metadata\"" + "description": "insert data into the table: \"oracle_script_codes\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_set_input", + "name": "oracle_script_codes_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_script_revisions", + "name": "insert_oracle_script_codes_one", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "oracle_script_codes", "ofType": null }, - "description": "update data of the table: \"oracle_script_revisions\"" + "description": "insert a single row into the table: \"oracle_script_codes\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_set_input", + "name": "oracle_script_revisions_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_scripts", + "name": "insert_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "oracle_scripts_mutation_response", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": "update data of the table: \"oracle_scripts\"" + "description": "insert data into the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "_append", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_append_input", - "ofType": null - }, - "description": "append existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_delete_at_path", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_delete_at_path_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", + "ofType": null + } }, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" + "description": "the row to be inserted" }, { - "name": "_delete_elem", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_delete_elem_input", + "name": "oracle_script_revisions_on_conflict", "ofType": null }, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_oracle_script_revisions_one", + "type": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + }, + "description": "insert a single row into the table: \"oracle_script_revisions\"" + }, + { + "args": [ { - "name": "_delete_key", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_delete_key_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_insert_input", + "ofType": null + } + } + } }, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" + "description": "the rows to be inserted" }, { - "name": "_inc", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_inc_input", + "name": "oracle_scripts_on_conflict", "ofType": null }, - "description": "increments the integer columns with given value of the filtered values" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_oracle_scripts", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_mutation_response", + "ofType": null + }, + "description": "insert data into the table: \"oracle_scripts\"" + }, + { + "args": [ { - "name": "_prepend", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_insert_input", + "ofType": null + } }, - "description": "prepend existing jsonb value of filtered columns with new jsonb value" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_set_input", + "name": "oracle_scripts_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_packets", + "name": "insert_oracle_scripts_one", "type": { "kind": "OBJECT", - "name": "packets_mutation_response", + "name": "oracle_scripts", "ofType": null }, - "description": "update data of the table: \"packets\"" + "description": "insert a single row into the table: \"oracle_scripts\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_set_input", + "name": "raw_data_requests_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_raw_data_requests", + "name": "insert_raw_data_requests", "type": { "kind": "OBJECT", "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": "update data of the table: \"raw_data_requests\"" + "description": "insert data into the table: \"raw_data_requests\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_set_input", + "name": "raw_data_requests_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_related_data_sources", + "name": "insert_raw_data_requests_one", "type": { "kind": "OBJECT", - "name": "related_data_sources_mutation_response", + "name": "raw_data_requests", "ofType": null }, - "description": "update data of the table: \"related_data_sources\"" + "description": "insert a single row into the table: \"raw_data_requests\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_set_input", + "name": "related_data_sources_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_report_details", + "name": "insert_related_data_sources", "type": { "kind": "OBJECT", - "name": "report_details_mutation_response", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": "update data of the table: \"report_details\"" + "description": "insert data into the table: \"related_data_sources\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_set_input", + "name": "related_data_sources_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_reports", + "name": "insert_related_data_sources_one", "type": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "related_data_sources", "ofType": null }, - "description": "update data of the table: \"reports\"" + "description": "insert a single row into the table: \"related_data_sources\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_set_input", + "name": "report_details_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_requested_validators", + "name": "insert_report_details", "type": { "kind": "OBJECT", - "name": "requested_validators_mutation_response", + "name": "report_details_mutation_response", "ofType": null }, - "description": "update data of the table: \"requested_validators\"" + "description": "insert data into the table: \"report_details\"" }, { "args": [ { - "name": "_inc", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_insert_input", + "ofType": null + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the row to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_set_input", + "name": "report_details_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_requests", + "name": "insert_report_details_one", "type": { "kind": "OBJECT", - "name": "requests_mutation_response", + "name": "report_details", "ofType": null }, - "description": "update data of the table: \"requests\"" + "description": "insert a single row into the table: \"report_details\"" }, { "args": [ { - "name": "_append", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_append_input", - "ofType": null - }, - "description": "append existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_delete_at_path", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_at_path_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_insert_input", + "ofType": null + } + } + } }, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" + "description": "the rows to be inserted" }, { - "name": "_delete_elem", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_delete_elem_input", + "name": "reports_on_conflict", "ofType": null }, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_reports", + "type": { + "kind": "OBJECT", + "name": "reports_mutation_response", + "ofType": null + }, + "description": "insert data into the table: \"reports\"" + }, + { + "args": [ { - "name": "_delete_key", + "name": "object", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_key_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_insert_input", + "ofType": null + } }, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" + "description": "the row to be inserted" }, { - "name": "_inc", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_inc_input", + "name": "reports_on_conflict", "ofType": null }, - "description": "increments the integer columns with given value of the filtered values" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_reports_one", + "type": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + }, + "description": "insert a single row into the table: \"reports\"" + }, + { + "args": [ { - "name": "_prepend", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_insert_input", + "ofType": null + } + } + } }, - "description": "prepend existing jsonb value of filtered columns with new jsonb value" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_set_input", + "name": "requested_validators_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_requested_validators", + "type": { + "kind": "OBJECT", + "name": "requested_validators_mutation_response", + "ofType": null + }, + "description": "insert data into the table: \"requested_validators\"" + }, + { + "args": [ { - "name": "where", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "requested_validators_insert_input", "ofType": null } }, - "description": "filter the rows which have to be updated" + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_transactions", + "name": "insert_requested_validators_one", "type": { "kind": "OBJECT", - "name": "transactions_mutation_response", + "name": "requested_validators", "ofType": null }, - "description": "update data of the table: \"transactions\"" + "description": "insert a single row into the table: \"requested_validators\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validator_votes_set_input", + "name": "requests_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_requests", + "type": { + "kind": "OBJECT", + "name": "requests_mutation_response", + "ofType": null + }, + "description": "insert data into the table: \"requests\"" + }, + { + "args": [ { - "name": "where", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", + "name": "requests_insert_input", "ofType": null } }, - "description": "filter the rows which have to be updated" + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_validator_votes", + "name": "insert_requests_one", "type": { "kind": "OBJECT", - "name": "validator_votes_mutation_response", + "name": "requests", "ofType": null }, - "description": "update data of the table: \"validator_votes\"" + "description": "insert a single row into the table: \"requests\"" }, { "args": [ { - "name": "_inc", + "name": "objects", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "validators_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_insert_input", + "ofType": null + } + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": "the rows to be inserted" }, { - "name": "_set", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_set_input", + "name": "transactions_on_conflict", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_transactions", + "type": { + "kind": "OBJECT", + "name": "transactions_mutation_response", + "ofType": null + }, + "description": "insert data into the table: \"transactions\"" + }, + { + "args": [ { - "name": "where", + "name": "object", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", + "name": "transactions_insert_input", "ofType": null } }, - "description": "filter the rows which have to be updated" + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_validators", + "name": "insert_transactions_one", "type": { "kind": "OBJECT", - "name": "validators_mutation_response", - "ofType": null - }, - "description": "update data of the table: \"validators\"" - } - ] - }, - { - "inputFields": null, - "kind": "SCALAR", - "possibleTypes": null, - "interfaces": null, - "name": "numeric", - "enumValues": null, - "description": null, - "fields": null - }, - { - "inputFields": [ - { - "name": "_eq", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "numeric", + "name": "transactions", "ofType": null }, - "description": null + "description": "insert a single row into the table: \"transactions\"" }, { - "name": "_gt", - "defaultValue": null, + "args": [ + { + "name": "objects", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_insert_input", + "ofType": null + } + } + } + }, + "description": "the rows to be inserted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_unbonding_delegations", "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "unbonding_delegations_mutation_response", "ofType": null }, - "description": null + "description": "insert data into the table: \"unbonding_delegations\"" }, { - "name": "_gte", - "defaultValue": null, + "args": [ + { + "name": "object", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_insert_input", + "ofType": null + } + }, + "description": "the row to be inserted" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_unbonding_delegations_one", "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "unbonding_delegations", "ofType": null }, - "description": null + "description": "insert a single row into the table: \"unbonding_delegations\"" }, { - "name": "_in", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", + "args": [ + { + "name": "objects", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_insert_input", + "ofType": null + } + } + } + }, + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_on_conflict", "ofType": null - } + }, + "description": "on conflict condition" } - }, - "description": null - }, - { - "name": "_is_null", - "defaultValue": null, + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_validator_votes", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "validator_votes_mutation_response", "ofType": null }, - "description": null + "description": "insert data into the table: \"validator_votes\"" }, { - "name": "_lt", - "defaultValue": null, + "args": [ + { + "name": "object", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_insert_input", + "ofType": null + } + }, + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_on_conflict", + "ofType": null + }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_validator_votes_one", "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "validator_votes", "ofType": null }, - "description": null + "description": "insert a single row into the table: \"validator_votes\"" }, { - "name": "_lte", - "defaultValue": null, + "args": [ + { + "name": "objects", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_insert_input", + "ofType": null + } + } + } + }, + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_on_conflict", + "ofType": null + }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_validators", "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "validators_mutation_response", "ofType": null }, - "description": null + "description": "insert data into the table: \"validators\"" }, { - "name": "_neq", - "defaultValue": null, + "args": [ + { + "name": "object", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_insert_input", + "ofType": null + } + }, + "description": "the row to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_on_conflict", + "ofType": null + }, + "description": "on conflict condition" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "insert_validators_one", "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "validators", "ofType": null }, - "description": null + "description": "insert a single row into the table: \"validators\"" }, { - "name": "_nin", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", "ofType": null - } - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "numeric_comparison_exp", - "enumValues": null, - "description": "expression to compare columns of type numeric. All fields are combined with logical 'AND'.", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions", - "enumValues": null, - "description": "columns and relationships of \"oracle_script_revisions\"", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } - }, - "description": null - }, - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script", + "name": "update_accounts", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null - } + "kind": "OBJECT", + "name": "accounts_mutation_response", + "ofType": null }, - "description": "An object relationship" + "description": "update data of the table: \"accounts\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_pk_columns_input", + "ofType": null + } + }, + "description": null } - }, - "description": null - }, - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "update_accounts_by_pk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "OBJECT", + "name": "accounts", + "ofType": null }, - "description": null + "description": "update single row of the table: \"accounts\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } - }, - "description": null - }, - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "transaction", + "name": "update_blocks", "type": { "kind": "OBJECT", - "name": "transactions", + "name": "blocks_mutation_response", "ofType": null }, - "description": "An object relationship" + "description": "update data of the table: \"blocks\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_aggregate", - "enumValues": null, - "description": "aggregated selection of \"oracle_script_revisions\"", - "fields": [ - { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "aggregate", + "name": "update_blocks_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate_fields", + "name": "blocks", "ofType": null }, - "description": null + "description": "update single row of the table: \"blocks\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions", + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", "ofType": null } - } + }, + "description": "filter the rows which have to be updated" } - }, - "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_aggregate_fields", - "enumValues": null, - "description": "aggregate fields of \"oracle_script_revisions\"", - "fields": [ - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "avg", + "name": "update_data_source_revisions", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_avg_fields", + "name": "data_source_revisions_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"data_source_revisions\"" }, { "args": [ { - "name": "columns", + "name": "_inc", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_inc_input", + "ofType": null }, - "description": null + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "distinct", + "name": "_set", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_set_input", "ofType": null }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_pk_columns_input", + "ofType": null + } + }, "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "count", + "name": "update_data_source_revisions_by_pk", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "data_source_revisions", "ofType": null }, - "description": null + "description": "update single row of the table: \"data_source_revisions\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "max", + "name": "update_data_sources", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_max_fields", + "name": "data_sources_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"data_sources\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "min", + "name": "update_data_sources_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_min_fields", + "name": "data_sources", "ofType": null }, - "description": null + "description": "update single row of the table: \"data_sources\"" }, { - "args": [], + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "stddev", + "name": "update_delegations", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_fields", + "name": "delegations_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"delegations\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_pop", + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_delegations_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_pop_fields", + "name": "delegations", "ofType": null }, - "description": null + "description": "update single row of the table: \"delegations\"" }, { - "args": [], + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "metadata_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "stddev_samp", + "name": "update_metadata", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_samp_fields", + "name": "metadata_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"metadata\"" }, { - "args": [], + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "metadata_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "sum", + "name": "update_metadata_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_sum_fields", + "name": "metadata", "ofType": null }, - "description": null + "description": "update single row of the table: \"metadata\"" }, { - "args": [], + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "var_pop", + "name": "update_oracle_script_codes", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_var_pop_fields", + "name": "oracle_script_codes_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"oracle_script_codes\"" }, { - "args": [], + "args": [ + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "var_samp", + "name": "update_oracle_script_codes_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_var_samp_fields", + "name": "oracle_script_codes", "ofType": null }, - "description": null + "description": "update single row of the table: \"oracle_script_codes\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "variance", + "name": "update_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_variance_fields", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": null - } - ] - }, - { - "inputFields": [ + "description": "update data of the table: \"oracle_script_revisions\"" + }, { - "name": "avg", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_oracle_script_revisions_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_avg_order_by", + "kind": "OBJECT", + "name": "oracle_script_revisions", "ofType": null }, - "description": null + "description": "update single row of the table: \"oracle_script_revisions\"" }, { - "name": "count", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_oracle_scripts", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_scripts_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"oracle_scripts\"" }, { - "name": "max", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_oracle_scripts_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_max_order_by", + "kind": "OBJECT", + "name": "oracle_scripts", "ofType": null }, - "description": null + "description": "update single row of the table: \"oracle_scripts\"" }, { - "name": "min", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_raw_data_requests", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_min_order_by", + "kind": "OBJECT", + "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"raw_data_requests\"" }, { - "name": "stddev", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_raw_data_requests_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_order_by", + "kind": "OBJECT", + "name": "raw_data_requests", "ofType": null }, - "description": null + "description": "update single row of the table: \"raw_data_requests\"" }, { - "name": "stddev_pop", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_related_data_sources", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_pop_order_by", + "kind": "OBJECT", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"related_data_sources\"" }, { - "name": "stddev_samp", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_related_data_sources_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_samp_order_by", + "kind": "OBJECT", + "name": "related_data_sources", "ofType": null }, - "description": null + "description": "update single row of the table: \"related_data_sources\"" }, { - "name": "sum", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_sum_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "var_pop", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_report_details", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_var_pop_order_by", + "kind": "OBJECT", + "name": "report_details_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"report_details\"" }, { - "name": "var_samp", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_report_details_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_var_samp_order_by", + "kind": "OBJECT", + "name": "report_details", "ofType": null }, - "description": null + "description": "update single row of the table: \"report_details\"" }, { - "name": "variance", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_variance_order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_aggregate_order_by", - "enumValues": null, - "description": "order by aggregate values of table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", + "name": "reports_bool_exp", "ofType": null } - } + }, + "description": "filter the rows which have to be updated" } - }, - "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_reports", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", + "kind": "OBJECT", + "name": "reports_mutation_response", "ofType": null }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_arr_rel_insert_input", - "enumValues": null, - "description": "input type for inserting array relation for remote table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_avg_fields", - "enumValues": null, - "description": "aggregate avg on columns", - "fields": [ + "description": "update data of the table: \"reports\"" + }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "update_reports_by_pk", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "reports", "ofType": null }, - "description": null + "description": "update single row of the table: \"reports\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "update_requested_validators", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "requested_validators_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"requested_validators\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "update_requested_validators_by_pk", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "requested_validators", "ofType": null }, - "description": null + "description": "update single row of the table: \"requested_validators\"" }, { - "args": [], + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "update_requests", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "requests_mutation_response", "ofType": null }, - "description": null - } - ] - }, - { - "inputFields": [ + "description": "update data of the table: \"requests\"" + }, { - "name": "block_height", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_requests_by_pk", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "requests", "ofType": null }, - "description": null + "description": "update single row of the table: \"requests\"" }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [ + { + "name": "_append", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_append_input", + "ofType": null + }, + "description": "append existing jsonb value of filtered columns with new jsonb value" + }, + { + "name": "_delete_at_path", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_at_path_input", + "ofType": null + }, + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" + }, + { + "name": "_delete_elem", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_elem_input", + "ofType": null + }, + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" + }, + { + "name": "_delete_key", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_key_input", + "ofType": null + }, + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" + }, + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_prepend", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_prepend_input", + "ofType": null + }, + "description": "prepend existing jsonb value of filtered columns with new jsonb value" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_transactions", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "transactions_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"transactions\"" }, { - "name": "revision_number", - "defaultValue": null, + "args": [ + { + "name": "_append", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_append_input", + "ofType": null + }, + "description": "append existing jsonb value of filtered columns with new jsonb value" + }, + { + "name": "_delete_at_path", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_at_path_input", + "ofType": null + }, + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" + }, + { + "name": "_delete_elem", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_elem_input", + "ofType": null + }, + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" + }, + { + "name": "_delete_key", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_delete_key_input", + "ofType": null + }, + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" + }, + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_prepend", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_prepend_input", + "ofType": null + }, + "description": "prepend existing jsonb value of filtered columns with new jsonb value" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_transactions_by_pk", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "transactions", "ofType": null }, - "description": null + "description": "update single row of the table: \"transactions\"" }, { - "name": "timestamp", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_unbonding_delegations", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "unbonding_delegations_mutation_response", "ofType": null }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_avg_order_by", - "enumValues": null, - "description": "order by avg() on columns of table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "_and", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - } - }, - "description": null + "description": "update data of the table: \"unbonding_delegations\"" }, { - "name": "_not", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_validator_votes", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "kind": "OBJECT", + "name": "validator_votes_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"validator_votes\"" }, { - "name": "_or", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_pk_columns_input", + "ofType": null + } + }, + "description": null } - }, - "description": null - }, - { - "name": "block_height", - "defaultValue": null, + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_validator_votes_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "OBJECT", + "name": "validator_votes", "ofType": null }, - "description": null + "description": "update single row of the table: \"validator_votes\"" }, { - "name": "name", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_validators", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "validators_mutation_response", "ofType": null }, - "description": null + "description": "update data of the table: \"validators\"" }, { - "name": "oracle_script", - "defaultValue": null, + "args": [ + { + "name": "_inc", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_inc_input", + "ofType": null + }, + "description": "increments the integer columns with given value of the filtered values" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "pk_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_pk_columns_input", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "update_validators_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "kind": "OBJECT", + "name": "validators", "ofType": null }, - "description": null - }, + "description": "update single row of the table: \"validators\"" + } + ] + }, + { + "inputFields": null, + "kind": "SCALAR", + "possibleTypes": null, + "interfaces": null, + "name": "numeric", + "enumValues": null, + "description": null, + "fields": null + }, + { + "inputFields": [ { - "name": "oracle_script_id", + "name": "_eq", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "_gt", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "_gte", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "transaction", + "name": "_in", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, "description": null }, { - "name": "tx_hash", + "name": "_is_null", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_bool_exp", - "enumValues": null, - "description": "Boolean expression to filter rows from the table \"oracle_script_revisions\". All fields are combined with a logical 'AND'.", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_constraint", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_revisions_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "block_height", + "name": "_lt", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "_lte", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "_neq", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "numeric", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "_nin", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, "description": null } @@ -16996,26 +18816,41 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_inc_input", + "name": "numeric_comparison_exp", "enumValues": null, - "description": "input type for incrementing integer columne in table \"oracle_script_revisions\"", + "description": "expression to compare columns of type numeric. All fields are combined with logical 'AND'.", "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_codes", + "enumValues": null, + "description": "columns and relationships of \"oracle_script_codes\"", + "fields": [ { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "code_hash", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } }, "description": null }, { - "name": "name", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "code_text", "type": { "kind": "SCALAR", "name": "String", @@ -17024,91 +18859,210 @@ "description": null }, { - "name": "oracle_script", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_obj_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_scripts", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "transaction", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_scripts_aggregate", "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "tx_hash", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "schema", "type": { "kind": "SCALAR", - "name": "bytea", + "name": "String", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_insert_input", - "enumValues": null, - "description": "input type for inserting data into table \"oracle_script_revisions\"", - "fields": null + ] }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_max_fields", + "name": "oracle_script_codes_aggregate", "enumValues": null, - "description": "aggregate max on columns", + "description": "aggregated selection of \"oracle_script_codes\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_script_codes_aggregate_fields", "ofType": null }, "description": null @@ -17117,22 +19071,74 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_codes", + "ofType": null + } + } + } }, "description": null - }, + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_codes_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"oracle_script_codes\"", + "fields": [ { - "args": [], + "args": [ + { + "name": "columns", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "count", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null }, "description": null @@ -17141,10 +19147,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "max", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_script_codes_max_fields", "ofType": null }, "description": null @@ -17153,10 +19159,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "min", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_script_codes_min_fields", "ofType": null }, "description": null @@ -17166,7 +19172,7 @@ { "inputFields": [ { - "name": "block_height", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -17176,41 +19182,64 @@ "description": null }, { - "name": "name", + "name": "max", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_max_order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "min", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_min_order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": [ { - "name": "revision_number", + "name": "data", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_insert_input", + "ofType": null + } + } + } }, "description": null }, { - "name": "timestamp", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_on_conflict", "ofType": null }, "description": null @@ -17219,130 +19248,155 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_max_order_by", + "name": "oracle_script_codes_arr_rel_insert_input", "enumValues": null, - "description": "order by max() on columns of table \"oracle_script_revisions\"", + "description": "input type for inserting array relation for remote table \"oracle_script_codes\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_min_fields", - "enumValues": null, - "description": "aggregate min on columns", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", + "name": "_and", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "name", + "name": "_not", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "_or", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "code_hash", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", + "name": "code_text", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "block_height", + "name": "oracle_scripts", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null }, { - "name": "name", + "name": "schema", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_bool_exp", + "enumValues": null, + "description": "Boolean expression to filter rows from the table \"oracle_script_codes\". All fields are combined with a logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_constraint", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_codes_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "code_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "code_text", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "oracle_scripts", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "schema", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null @@ -17351,9 +19405,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_min_order_by", + "name": "oracle_script_codes_insert_input", "enumValues": null, - "description": "order by min() on columns of table \"oracle_script_revisions\"", + "description": "input type for inserting data into table \"oracle_script_codes\"", "fields": null }, { @@ -17361,74 +19415,54 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_mutation_response", + "name": "oracle_script_codes_max_fields", "enumValues": null, - "description": "response of any mutation on the table \"oracle_script_revisions\"", + "description": "aggregate max on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "code_text", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", + "name": "schema", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "data of the affected rows by the mutation" + "description": null } ] }, { "inputFields": [ { - "name": "data", + "name": "code_text", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "on_conflict", + "name": "schema", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -17437,30 +19471,107 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_obj_rel_insert_input", + "name": "oracle_script_codes_max_order_by", "enumValues": null, - "description": "input type for inserting object relation for remote table \"oracle_script_revisions\"", + "description": "order by max() on columns of table \"oracle_script_codes\"", "fields": null }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_codes_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "code_text", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "schema", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + } + ] + }, { "inputFields": [ { - "name": "constraint", + "name": "code_text", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "schema", "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_codes_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"oracle_script_codes\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "affected_rows", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_constraint", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "description": null + "description": "number of affected rows by the mutation" }, { - "name": "update_columns", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "returning", "type": { "kind": "NON_NULL", "name": null, @@ -17471,21 +19582,39 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_update_column", + "kind": "OBJECT", + "name": "oracle_script_codes", "ofType": null } } } }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_insert_input", + "ofType": null + } + }, "description": null }, { - "name": "where", + "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_script_codes_on_conflict", "ofType": null }, "description": null @@ -17494,45 +19623,72 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_on_conflict", + "name": "oracle_script_codes_obj_rel_insert_input", "enumValues": null, - "description": "on conflict condition type for table \"oracle_script_revisions\"", + "description": "input type for inserting object relation for remote table \"oracle_script_codes\"", "fields": null }, { "inputFields": [ { - "name": "block_height", + "name": "constraint", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_constraint", + "ofType": null + } }, "description": null }, { - "name": "name", + "name": "update_columns", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_update_column", + "ofType": null + } + } + } }, "description": null }, { - "name": "oracle_script", + "name": "where", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "oracle_script_codes_bool_exp", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": [ { - "name": "oracle_script_id", + "name": "code_hash", "defaultValue": null, "type": { "kind": "ENUM", @@ -17542,7 +19698,7 @@ "description": null }, { - "name": "revision_number", + "name": "code_text", "defaultValue": null, "type": { "kind": "ENUM", @@ -17552,32 +19708,47 @@ "description": null }, { - "name": "timestamp", + "name": "oracle_scripts_aggregate", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "transaction", + "name": "schema", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": [ { - "name": "tx_hash", + "name": "code_hash", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } }, "description": null } @@ -17585,9 +19756,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_order_by", + "name": "oracle_script_codes_pk_columns_input", "enumValues": null, - "description": "ordering options when selecting data from \"oracle_script_revisions\"", + "description": "primary key columns input for table: \"oracle_script_codes\"", "fields": null }, { @@ -17595,62 +19766,44 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_select_column", + "name": "oracle_script_codes_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "name", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "code_hash", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "code_text", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "schema", "description": "column name" } ], - "description": "select columns of table \"oracle_script_revisions\"", + "description": "select columns of table \"oracle_script_codes\"", "fields": null }, { "inputFields": [ { - "name": "block_height", + "name": "code_hash", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "bytea", "ofType": null }, "description": null }, { - "name": "name", + "name": "code_text", "defaultValue": null, "type": { "kind": "SCALAR", @@ -17660,52 +19813,51 @@ "description": null }, { - "name": "oracle_script_id", + "name": "schema", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_set_input", + "enumValues": null, + "description": "input type for updating data in table \"oracle_script_codes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_codes_update_column", + "enumValues": [ { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "code_hash", + "description": "column name" }, { - "name": "timestamp", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "code_text", + "description": "column name" }, { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "schema", + "description": "column name" } ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_set_input", - "enumValues": null, - "description": "input type for updating data in table \"oracle_script_revisions\"", + "description": "update columns of table \"oracle_script_codes\"", "fields": null }, { @@ -17713,9 +19865,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_stddev_fields", + "name": "oracle_script_revisions", "enumValues": null, - "description": "aggregate stddev on columns", + "description": "columns and relationships of \"oracle_script_revisions\"", "fields": [ { "args": [], @@ -17723,9 +19875,13 @@ "deprecationReason": null, "name": "block_height", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, @@ -17733,11 +19889,15 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "name", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null }, @@ -17745,96 +19905,109 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "oracle_script", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } }, - "description": null + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "oracle_script_id", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "name": "revision_number", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "transaction", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "transactions", "ofType": null }, - "description": null + "description": "An object relationship" }, { - "name": "timestamp", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_stddev_order_by", - "enumValues": null, - "description": "order by stddev() on columns of table \"oracle_script_revisions\"", - "fields": null + ] }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_stddev_pop_fields", + "name": "oracle_script_revisions_aggregate", "enumValues": null, - "description": "aggregate stddev_pop on columns", + "description": "aggregated selection of \"oracle_script_revisions\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate_fields", "ofType": null }, "description": null @@ -17843,108 +20016,146 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } }, "description": null - }, + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"oracle_script_revisions\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "avg", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_avg_fields", "ofType": null }, "description": null }, { - "args": [], + "args": [ + { + "name": "columns", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "max", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_script_revisions_max_fields", "ofType": null }, "description": null }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_script_revisions_min_fields", "ofType": null }, "description": null }, { - "name": "revision_number", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_script_revisions_stddev_fields", "ofType": null }, "description": null }, { - "name": "timestamp", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev_pop", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_script_revisions_stddev_pop_fields", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "stddev_samp", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_stddev_samp_fields", "ofType": null }, "description": null @@ -17953,10 +20164,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_sum_fields", "ofType": null }, "description": null @@ -17965,10 +20176,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "var_pop", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_var_pop_fields", "ofType": null }, "description": null @@ -17977,10 +20188,22 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "var_samp", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions_var_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "oracle_script_revisions_variance_fields", "ofType": null }, "description": null @@ -17990,17 +20213,17 @@ { "inputFields": [ { - "name": "block_height", + "name": "avg", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_avg_order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -18010,131 +20233,91 @@ "description": null }, { - "name": "revision_number", + "name": "max", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_max_order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "min", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_stddev_samp_order_by", - "enumValues": null, - "description": "order by stddev_samp() on columns of table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_sum_fields", - "enumValues": null, - "description": "aggregate sum on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_min_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "stddev", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "stddev_pop", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_pop_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", + "name": "stddev_samp", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_samp_order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "block_height", + "name": "sum", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_sum_order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "var_pop", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_var_pop_order_by", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "var_samp", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_var_samp_order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "variance", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_variance_order_by", "ofType": null }, "description": null @@ -18143,56 +20326,52 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_sum_order_by", + "name": "oracle_script_revisions_aggregate_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"oracle_script_revisions\"", + "description": "order by aggregate values of table \"oracle_script_revisions\"", "fields": null }, { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "name", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", - "description": "column name" - }, + "inputFields": [ { - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", - "description": "column name" + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", + "ofType": null + } + } + } + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "description": "column name" + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_on_conflict", + "ofType": null + }, + "description": null } ], - "description": "update columns of table \"oracle_script_revisions\"", + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_arr_rel_insert_input", + "enumValues": null, + "description": "input type for inserting array relation for remote table \"oracle_script_revisions\"", "fields": null }, { @@ -18200,9 +20379,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_var_pop_fields", + "name": "oracle_script_revisions_avg_fields", "enumValues": null, - "description": "aggregate var_pop on columns", + "description": "aggregate avg on columns", "fields": [ { "args": [], @@ -18300,78 +20479,77 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_var_pop_order_by", + "name": "oracle_script_revisions_avg_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"oracle_script_revisions\"", + "description": "order by avg() on columns of table \"oracle_script_revisions\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_var_samp_fields", - "enumValues": null, - "description": "aggregate var_samp on columns", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", + "name": "_and", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "_not", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "_or", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", + "name": "name", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "block_height", + "name": "oracle_script", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null @@ -18380,8 +20558,8 @@ "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null @@ -18390,8 +20568,8 @@ "name": "revision_number", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null @@ -18400,8 +20578,28 @@ "name": "timestamp", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", "ofType": null }, "description": null @@ -18410,69 +20608,78 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_var_samp_order_by", + "name": "oracle_script_revisions_bool_exp", "enumValues": null, - "description": "order by var_samp() on columns of table \"oracle_script_revisions\"", + "description": "Boolean expression to filter rows from the table \"oracle_script_revisions\". All fields are combined with a logical 'AND'.", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_variance_fields", - "enumValues": null, - "description": "aggregate variance on columns", - "fields": [ + "interfaces": null, + "name": "oracle_script_revisions_constraint", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, + "name": "oracle_script_revisions_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { "name": "block_height", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, "name": "oracle_script_id", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, "name": "revision_number", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, "name": "timestamp", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_inc_input", + "enumValues": null, + "description": "input type for incrementing integer column in table \"oracle_script_revisions\"", + "fields": null }, { "inputFields": [ @@ -18480,8 +20687,28 @@ "name": "block_height", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_obj_rel_insert_input", "ofType": null }, "description": null @@ -18490,8 +20717,8 @@ "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -18500,8 +20727,8 @@ "name": "revision_number", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -18510,8 +20737,28 @@ "name": "timestamp", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null @@ -18520,9 +20767,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_variance_order_by", + "name": "oracle_script_revisions_insert_input", "enumValues": null, - "description": "order by variance() on columns of table \"oracle_script_revisions\"", + "description": "input type for inserting data into table \"oracle_script_revisions\"", "fields": null }, { @@ -18530,23 +20777,19 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts", + "name": "oracle_script_revisions_max_fields", "enumValues": null, - "description": "columns and relationships of \"oracle_scripts\"", + "description": "aggregate max on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, @@ -18554,15 +20797,11 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "name", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "description": null }, @@ -18570,15 +20809,155 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "oracle_script_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, @@ -18586,90 +20965,107 @@ "args": [], "isDeprecated": false, "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { "name": "name", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"oracle_script_revisions\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "affected_rows", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "description": null + "description": "number of affected rows by the mutation" }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "returning", "type": { "kind": "NON_NULL", "name": null, @@ -18687,859 +21083,447 @@ } } }, - "description": "An array relationship" - }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "data", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "owner", + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "constraint", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "oracle_script_revisions_constraint", "ofType": null } }, "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", + "name": "update_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "related_data_sources", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "related_data_sources", - "ofType": null - } - } - } - }, - "description": "An array relationship" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "related_data_sources_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "related_data_sources_aggregate", - "ofType": null - } - }, - "description": "An aggregated array relationship" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "requests", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null + "kind": "ENUM", + "name": "oracle_script_revisions_update_column", + "ofType": null } } } }, - "description": "An array relationship" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "requests_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests_aggregate", - "ofType": null - } - }, - "description": "An aggregated array relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "schema", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "source_code_url", + "name": "where", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null }, "description": null } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", + ], + "kind": "INPUT_OBJECT", "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_aggregate", + "interfaces": null, + "name": "oracle_script_revisions_on_conflict", "enumValues": null, - "description": "aggregated selection of \"oracle_scripts\"", - "fields": [ + "description": "on conflict condition type for table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "aggregate", + "name": "block_height", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_aggregate_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "nodes", + "name": "name", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_aggregate_fields", - "enumValues": null, - "description": "aggregate fields of \"oracle_scripts\"", - "fields": [ + }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "avg", + "name": "oracle_script", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_avg_fields", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", "ofType": null }, "description": null }, { - "args": [ - { - "name": "columns", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_select_column", - "ofType": null - } - } - }, - "description": null - }, - { - "name": "distinct", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "count", + "name": "oracle_script_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "max", + "name": "revision_number", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_max_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min", + "name": "timestamp", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_min_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev", + "name": "transaction", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_stddev_fields", + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_pop", + "name": "tx_hash", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_stddev_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_samp", + "name": "oracle_script_id", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_stddev_samp_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sum", + "name": "revision_number", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts_sum_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_select_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "oracle_scripts_var_pop_fields", - "ofType": null - }, - "description": null + "name": "name", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "oracle_scripts_var_samp_fields", - "ofType": null - }, - "description": null + "name": "oracle_script_id", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "oracle_scripts_variance_fields", - "ofType": null - }, - "description": null + "name": "revision_number", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" } - ] + ], + "description": "select columns of table \"oracle_script_revisions\"", + "fields": null }, { "inputFields": [ { - "name": "avg", + "name": "block_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_avg_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "count", + "name": "name", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "max", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_max_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "min", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_min_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "stddev", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "stddev_pop", + "name": "tx_hash", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_pop_order_by", + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_set_input", + "enumValues": null, + "description": "input type for updating data in table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ { - "name": "stddev_samp", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_samp_order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "sum", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_sum_order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "var_pop", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_var_pop_order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "var_samp", + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_var_samp_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "variance", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_variance_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_aggregate_order_by", - "enumValues": null, - "description": "order by aggregate values of table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "data", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "on_conflict", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19548,9 +21532,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_arr_rel_insert_input", + "name": "oracle_script_revisions_stddev_order_by", "enumValues": null, - "description": "input type for inserting array relation for remote table \"oracle_scripts\"", + "description": "order by stddev() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -19558,15 +21542,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_avg_fields", + "name": "oracle_script_revisions_stddev_pop_fields", "enumValues": null, - "description": "aggregate avg on columns", + "description": "aggregate stddev_pop on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -19578,183 +21562,188 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "oracle_script_id", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "last_updated", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_avg_order_by", - "enumValues": null, - "description": "order by avg() on columns of table \"oracle_scripts\"", - "fields": null + ] }, { "inputFields": [ { - "name": "_and", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - } - }, - "description": null - }, - { - "name": "_not", + "name": "block_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "_or", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "description", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "id", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "last_updated", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "name", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "owner", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "related_data_sources", + "name": "block_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "requests", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "schema", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "source_code_url", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19763,33 +21752,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_bool_exp", + "name": "oracle_script_revisions_stddev_samp_order_by", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"oracle_scripts\". All fields are combined with a logical 'AND'.", + "description": "order by stddev_samp() on columns of table \"oracle_script_revisions\"", "fields": null }, { "inputFields": null, - "kind": "ENUM", + "kind": "OBJECT", "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_constraint", - "enumValues": [ + "interfaces": [], + "name": "oracle_script_revisions_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "id", - "defaultValue": null, + "name": "block_height", "type": { "kind": "SCALAR", "name": "bigint", @@ -19798,39 +21779,22 @@ "description": null }, { - "name": "last_updated", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { "kind": "SCALAR", "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_inc_input", - "enumValues": null, - "description": "input type for incrementing integer columne in table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "description", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null }, { - "name": "id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { "kind": "SCALAR", "name": "bigint", @@ -19839,81 +21803,57 @@ "description": null }, { - "name": "last_updated", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { "kind": "SCALAR", "name": "bigint", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "name", + "name": "block_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_arr_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "owner", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "related_data_sources", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_arr_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "requests", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_arr_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "schema", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "source_code_url", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19922,64 +21862,75 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_insert_input", + "name": "oracle_script_revisions_sum_order_by", "enumValues": null, - "description": "input type for inserting data into table \"oracle_scripts\"", + "description": "order by sum() on columns of table \"oracle_script_revisions\"", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_max_fields", - "enumValues": null, - "description": "aggregate max on columns", - "fields": [ + "interfaces": null, + "name": "oracle_script_revisions_update_column", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null + "name": "block_height", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "name": "name", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "name": "oracle_script_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + } + ], + "description": "update columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "block_height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -19988,10 +21939,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "oracle_script_id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -20000,10 +21951,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "schema", + "name": "revision_number", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -20012,10 +21963,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "source_code_url", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -20025,37 +21976,7 @@ { "inputFields": [ { - "name": "description", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "last_updated", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "name", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -20065,7 +21986,7 @@ "description": null }, { - "name": "owner", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -20075,7 +21996,7 @@ "description": null }, { - "name": "schema", + "name": "revision_number", "defaultValue": null, "type": { "kind": "ENUM", @@ -20085,7 +22006,7 @@ "description": null }, { - "name": "source_code_url", + "name": "timestamp", "defaultValue": null, "type": { "kind": "ENUM", @@ -20098,9 +22019,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_max_order_by", + "name": "oracle_script_revisions_var_pop_order_by", "enumValues": null, - "description": "order by max() on columns of table \"oracle_scripts\"", + "description": "order by var_pop() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -20108,18 +22029,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_min_fields", + "name": "oracle_script_revisions_var_samp_fields", "enumValues": null, - "description": "aggregate min on columns", + "description": "aggregate var_samp on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "block_height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -20128,10 +22049,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "oracle_script_id", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -20140,10 +22061,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "revision_number", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -20152,86 +22073,130 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "owner", + "name": "oracle_script_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "schema", + "name": "revision_number", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "source_code_url", + "name": "timestamp", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_var_samp_order_by", + "enumValues": null, + "description": "order by var_samp() on columns of table \"oracle_script_revisions\"", + "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_variance_fields", + "enumValues": null, + "description": "aggregate variance on columns", + "fields": [ { - "name": "description", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "last_updated", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "name", + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -20241,7 +22206,7 @@ "description": null }, { - "name": "owner", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -20251,7 +22216,7 @@ "description": null }, { - "name": "schema", + "name": "revision_number", "defaultValue": null, "type": { "kind": "ENUM", @@ -20261,7 +22226,7 @@ "description": null }, { - "name": "source_code_url", + "name": "timestamp", "defaultValue": null, "type": { "kind": "ENUM", @@ -20274,9 +22239,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_min_order_by", + "name": "oracle_script_revisions_variance_order_by", "enumValues": null, - "description": "order by min() on columns of table \"oracle_scripts\"", + "description": "order by variance() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -20284,106 +22249,178 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_mutation_response", + "name": "oracle_scripts", "enumValues": null, - "description": "response of any mutation on the table \"oracle_scripts\"", + "description": "columns and relationships of \"oracle_scripts\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "code_hash", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "bytea", "ofType": null } }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", + "name": "description", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ + "description": null + }, { - "name": "data", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, "description": null }, { - "name": "on_conflict", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "constraint", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "name", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_constraint", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "description": null }, { - "name": "update_columns", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_code", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_codes", + "ofType": null + } + }, + "description": "An object relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions", "type": { "kind": "NON_NULL", "name": null, @@ -20394,332 +22431,791 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_update_column", + "kind": "OBJECT", + "name": "oracle_script_revisions", "ofType": null } } } }, - "description": null - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "description", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "description": "An array relationship" }, { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "last_updated", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "name", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "owner", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null }, { - "name": "oracle_script_revisions_aggregate", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_aggregate_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "owner", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "related_data_sources_aggregate", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requests", "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_aggregate_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, "name": "requests_aggregate", - "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_aggregate_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests_aggregate", + "ofType": null + } }, - "description": null - }, + "description": "An aggregated array relationship" + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_aggregate", + "enumValues": null, + "description": "aggregated selection of \"oracle_scripts\"", + "fields": [ { - "name": "schema", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "aggregate", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_scripts_aggregate_fields", "ofType": null }, "description": null }, { - "name": "source_code_url", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "nodes", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } + } + } }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"oracle_scripts\"", - "fields": null + ] }, { "inputFields": null, - "kind": "ENUM", + "kind": "OBJECT", "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_select_column", - "enumValues": [ + "interfaces": [], + "name": "oracle_scripts_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"oracle_scripts\"", + "fields": [ { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", - "description": "column name" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_avg_fields", + "ofType": null + }, + "description": null }, { + "args": [ + { + "name": "columns", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "id", - "description": "column name" + "name": "count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", - "description": "column name" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_max_fields", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", - "description": "column name" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_min_fields", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "owner", - "description": "column name" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_stddev_fields", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "schema", - "description": "column name" + "name": "stddev_pop", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_stddev_pop_fields", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "source_code_url", - "description": "column name" + "name": "stddev_samp", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_stddev_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_sum_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "var_pop", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_var_pop_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "var_samp", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_var_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "oracle_scripts_variance_fields", + "ofType": null + }, + "description": null } - ], - "description": "select columns of table \"oracle_scripts\"", - "fields": null + ] }, { "inputFields": [ { - "name": "description", + "name": "avg", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_avg_order_by", "ofType": null }, "description": null }, { - "name": "id", + "name": "count", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "max", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_max_order_by", "ofType": null }, "description": null }, { - "name": "name", + "name": "min", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_min_order_by", "ofType": null }, "description": null }, { - "name": "owner", + "name": "stddev", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_stddev_order_by", "ofType": null }, "description": null }, { - "name": "schema", + "name": "stddev_pop", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_stddev_pop_order_by", "ofType": null }, "description": null }, { - "name": "source_code_url", + "name": "stddev_samp", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_stddev_samp_order_by", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_set_input", - "enumValues": null, - "description": "input type for updating data in table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_stddev_fields", - "enumValues": null, - "description": "aggregate stddev on columns", - "fields": [ + }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "sum", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_sum_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "last_updated", + "name": "var_pop", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_var_pop_order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "id", + "name": "var_samp", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_var_samp_order_by", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "variance", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_variance_order_by", "ofType": null }, "description": null @@ -20728,64 +23224,41 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_order_by", + "name": "oracle_scripts_aggregate_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"oracle_scripts\"", + "description": "order by aggregate values of table \"oracle_scripts\"", "fields": null }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "last_updated", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, { "inputFields": [ { - "name": "id", + "name": "data", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_insert_input", + "ofType": null + } + } + } }, "description": null }, { - "name": "last_updated", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_on_conflict", "ofType": null }, "description": null @@ -20794,9 +23267,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_pop_order_by", + "name": "oracle_scripts_arr_rel_insert_input", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"oracle_scripts\"", + "description": "input type for inserting array relation for remote table \"oracle_scripts\"", "fields": null }, { @@ -20804,9 +23277,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_stddev_samp_fields", + "name": "oracle_scripts_avg_fields", "enumValues": null, - "description": "aggregate stddev_samp on columns", + "description": "aggregate avg on columns", "fields": [ { "args": [], @@ -20860,230 +23333,176 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_samp_order_by", + "name": "oracle_scripts_avg_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"oracle_scripts\"", + "description": "order by avg() on columns of table \"oracle_scripts\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_sum_fields", - "enumValues": null, - "description": "aggregate sum on columns", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "_and", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "last_updated", + "name": "_not", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "id", + "name": "_or", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + } }, "description": null }, { - "name": "last_updated", + "name": "code_hash", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_sum_order_by", - "enumValues": null, - "description": "order by sum() on columns of table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_update_column", - "enumValues": [ + }, { - "isDeprecated": false, - "deprecationReason": null, "name": "description", - "description": "column name" + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, "name": "id", - "description": "column name" + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, "name": "last_updated", - "description": "column name" + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, "name": "name", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "owner", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "schema", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "source_code_url", - "description": "column name" - } - ], - "description": "update columns of table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_var_pop_fields", - "enumValues": null, - "description": "aggregate var_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "last_updated", + "name": "oracle_script_code", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "id", + "name": "oracle_script_revisions", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "owner", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null - } + }, + { + "name": "related_data_sources", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "requests", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": null + } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_var_pop_order_by", + "name": "oracle_scripts_bool_exp", "enumValues": null, - "description": "order by var_pop() on columns of table \"oracle_scripts\"", + "description": "Boolean expression to filter rows from the table \"oracle_scripts\". All fields are combined with a logical 'AND'.", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_var_samp_fields", - "enumValues": null, - "description": "aggregate var_samp on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, + "interfaces": null, + "name": "oracle_scripts_constraint", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null + "name": "oracle_scripts_pkey", + "description": "unique or primary key constraint" } - ] + ], + "description": "unique or primary key constraints on table \"oracle_scripts\"", + "fields": null }, { "inputFields": [ @@ -21091,8 +23510,8 @@ "name": "id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -21101,8 +23520,8 @@ "name": "last_updated", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -21111,54 +23530,39 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_var_samp_order_by", + "name": "oracle_scripts_inc_input", "enumValues": null, - "description": "order by var_samp() on columns of table \"oracle_scripts\"", + "description": "input type for incrementing integer column in table \"oracle_scripts\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts_variance_fields", - "enumValues": null, - "description": "aggregate variance on columns", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "code_hash", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bytea", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "last_updated", + "name": "description", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { "name": "id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -21167,66 +23571,79 @@ "name": "last_updated", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_scripts_variance_order_by", - "enumValues": null, - "description": "order by variance() on columns of table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "order_by", - "enumValues": [ + }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc", - "description": "in the ascending order, nulls last" + "name": "name", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc_nulls_first", - "description": "in the ascending order, nulls first" + "name": "oracle_script_code", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_obj_rel_insert_input", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc_nulls_last", - "description": "in the ascending order, nulls last" + "name": "oracle_script_revisions", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_arr_rel_insert_input", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc", - "description": "in the descending order, nulls first" + "name": "owner", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc_nulls_first", - "description": "in the descending order, nulls first" + "name": "related_data_sources", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_arr_rel_insert_input", + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc_nulls_last", - "description": "in the descending order, nulls last" + "name": "requests", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_arr_rel_insert_input", + "ofType": null + }, + "description": null } ], - "description": "column ordering options", + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"oracle_scripts\"", "fields": null }, { @@ -21234,66 +23651,31 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets", + "name": "oracle_scripts_max_fields", "enumValues": null, - "description": "columns and relationships of \"packets\"", + "description": "aggregate max on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "blocks", - "ofType": null - } - }, - "description": "An object relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", + "name": "description", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "description": null }, { - "args": [ - { - "name": "path", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": "JSON select path" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "detail", + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, @@ -21301,15 +23683,11 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "is_incoming", + "name": "last_updated", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, @@ -21317,15 +23695,11 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "my_channel", + "name": "name", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "description": null }, @@ -21333,117 +23707,94 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "my_port", + "name": "owner", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", + "name": "description", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "type", + "name": "id", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_chain_id", + "name": "last_updated", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_channel", + "name": "name", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_port", + "name": "owner", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"oracle_scripts\"", + "fields": null }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets_aggregate", + "name": "oracle_scripts_min_fields", "enumValues": null, - "description": "aggregated selection of \"packets\"", + "description": "aggregate min on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "aggregate", + "name": "description", "type": { - "kind": "OBJECT", - "name": "packets_aggregate_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null @@ -21452,86 +23803,34 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "nodes", + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "packets", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_aggregate_fields", - "enumValues": null, - "description": "aggregate fields of \"packets\"", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "avg", + "name": "last_updated", "type": { - "kind": "OBJECT", - "name": "packets_avg_fields", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [ - { - "name": "columns", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_select_column", - "ofType": null - } - } - }, - "description": null - }, - { - "name": "distinct", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "count", + "name": "name", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "description": null @@ -21540,126 +23839,224 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "max", + "name": "owner", "type": { - "kind": "OBJECT", - "name": "packets_max_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min", + "name": "description", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_min_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev", + "name": "id", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_stddev_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_pop", + "name": "last_updated", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_stddev_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_samp", + "name": "name", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_stddev_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sum", + "name": "owner", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_sum_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"oracle_scripts\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "var_pop", + "name": "affected_rows", "type": { - "kind": "OBJECT", - "name": "packets_var_pop_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "description": null + "description": "number of affected rows by the mutation" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "var_samp", + "name": "returning", "type": { - "kind": "OBJECT", - "name": "packets_var_samp_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } + } + } + }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_insert_input", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "variance", + "name": "on_conflict", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets_variance_fields", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_on_conflict", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"oracle_scripts\"", + "fields": null }, { "inputFields": [ { - "name": "avg", + "name": "constraint", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_constraint", + "ofType": null + } + }, + "description": null + }, + { + "name": "update_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_update_column", + "ofType": null + } + } + } + }, + "description": null + }, + { + "name": "where", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_avg_order_by", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": [ { - "name": "count", + "name": "code_hash", "defaultValue": null, "type": { "kind": "ENUM", @@ -21669,91 +24066,91 @@ "description": null }, { - "name": "max", + "name": "description", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "min", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_min_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "stddev", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_stddev_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "stddev_pop", + "name": "name", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_stddev_pop_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "stddev_samp", + "name": "oracle_script_code", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_stddev_samp_order_by", + "name": "oracle_script_codes_order_by", "ofType": null }, "description": null }, { - "name": "sum", + "name": "oracle_script_revisions_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_sum_order_by", + "name": "oracle_script_revisions_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "var_pop", + "name": "owner", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_var_pop_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "var_samp", + "name": "related_data_sources_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_var_samp_order_by", + "name": "related_data_sources_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "variance", + "name": "requests_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_variance_order_by", + "name": "requests_aggregate_order_by", "ofType": null }, "description": null @@ -21762,20 +24159,24 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_aggregate_order_by", + "name": "oracle_scripts_order_by", "enumValues": null, - "description": "order by aggregate values of table \"packets\"", + "description": "ordering options when selecting data from \"oracle_scripts\"", "fields": null }, { "inputFields": [ { - "name": "detail", + "name": "id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null } @@ -21783,41 +24184,116 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_append_input", + "name": "oracle_scripts_pk_columns_input", "enumValues": null, - "description": "append existing jsonb value of filtered columns with new jsonb value", + "description": "primary key columns input for table: \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_select_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "code_hash", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "description", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "owner", + "description": "column name" + } + ], + "description": "select columns of table \"oracle_scripts\"", "fields": null }, { "inputFields": [ { - "name": "data", + "name": "code_hash", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_insert_input", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bytea", + "ofType": null }, "description": null }, { - "name": "on_conflict", + "name": "description", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "packets_on_conflict", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "last_updated", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "owner", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null @@ -21826,9 +24302,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_arr_rel_insert_input", + "name": "oracle_scripts_set_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"packets\"", + "description": "input type for updating data in table \"oracle_scripts\"", "fields": null }, { @@ -21836,15 +24312,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets_avg_fields", + "name": "oracle_scripts_stddev_fields", "enumValues": null, - "description": "aggregate avg on columns", + "description": "aggregate stddev on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -21856,7 +24332,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sequence", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -21869,7 +24345,7 @@ { "inputFields": [ { - "name": "block_height", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -21879,7 +24355,7 @@ "description": null }, { - "name": "sequence", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -21892,157 +24368,196 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_avg_order_by", + "name": "oracle_scripts_stddev_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"packets\"", + "description": "order by stddev() on columns of table \"oracle_scripts\"", "fields": null }, { - "inputFields": [ - { - "name": "_and", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - } - }, - "description": null - }, + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "_not", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "_or", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - } - }, - "description": null - }, - { - "name": "block", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "block_height", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "detail", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "is_incoming", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "my_channel", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "my_port", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "sequence", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_stddev_samp_order_by", + "enumValues": null, + "description": "order by stddev_samp() on columns of table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ { - "name": "type", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "your_chain_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "your_channel", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "your_port", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -22051,9 +24566,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_bool_exp", + "name": "oracle_scripts_sum_order_by", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"packets\". All fields are combined with a logical 'AND'.", + "description": "order by sum() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -22061,224 +24576,101 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "packets_constraint", + "name": "oracle_scripts_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "packets_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"packets\"", - "fields": null - }, - { - "inputFields": [ + "name": "code_hash", + "description": "column name" + }, { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_delete_at_path_input", - "enumValues": null, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null - }, - { - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null, + "name": "description", + "description": "column name" + }, { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "owner", + "description": "column name" } ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_delete_elem_input", - "enumValues": null, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "description": "update columns of table \"oracle_scripts\"", "fields": null }, { - "inputFields": [ - { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", + "inputFields": null, + "kind": "OBJECT", "possibleTypes": null, - "interfaces": null, - "name": "packets_delete_key_input", + "interfaces": [], + "name": "oracle_scripts_var_pop_fields", "enumValues": null, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null - }, - { - "inputFields": [ + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null }, { - "name": "sequence", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_inc_input", - "enumValues": null, - "description": "input type for incrementing integer columne in table \"packets\"", - "fields": null + ] }, { "inputFields": [ { - "name": "block", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_obj_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "description": null - }, - { - "name": "is_incoming", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null - }, - { - "name": "my_channel", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "my_port", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "type", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "your_chain_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "your_channel", + "name": "id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "your_port", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -22287,9 +24679,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_insert_input", + "name": "oracle_scripts_var_pop_order_by", "enumValues": null, - "description": "input type for inserting data into table \"packets\"", + "description": "order by var_pop() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -22297,90 +24689,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets_max_fields", + "name": "oracle_scripts_var_samp_fields", "enumValues": null, - "description": "aggregate max on columns", + "description": "aggregate var_samp on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "my_channel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "my_port", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_chain_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_channel", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -22389,10 +24709,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "your_port", + "name": "last_updated", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -22402,67 +24722,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "my_channel", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "my_port", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "type", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "your_chain_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "your_channel", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -22472,7 +24732,7 @@ "description": null }, { - "name": "your_port", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -22485,9 +24745,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "packets_max_order_by", + "name": "oracle_scripts_var_samp_order_by", "enumValues": null, - "description": "order by max() on columns of table \"packets\"", + "description": "order by var_samp() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -22495,90 +24755,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets_min_fields", + "name": "oracle_scripts_variance_fields", "enumValues": null, - "description": "aggregate min on columns", + "description": "aggregate variance on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "my_channel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "my_port", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_chain_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "your_channel", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -22587,10 +24775,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "your_port", + "name": "last_updated", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -22600,7 +24788,7 @@ { "inputFields": [ { - "name": "block_height", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -22610,7 +24798,7 @@ "description": null }, { - "name": "my_channel", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -22618,74 +24806,61 @@ "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_variance_order_by", + "enumValues": null, + "description": "order by variance() on columns of table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "order_by", + "enumValues": [ { - "name": "my_port", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "asc", + "description": "in the ascending order, nulls last" }, { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "asc_nulls_first", + "description": "in the ascending order, nulls first" }, { - "name": "type", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "asc_nulls_last", + "description": "in the ascending order, nulls last" }, { - "name": "your_chain_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "desc", + "description": "in the descending order, nulls first" }, { - "name": "your_channel", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "desc_nulls_first", + "description": "in the descending order, nulls first" }, { - "name": "your_port", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "desc_nulls_last", + "description": "in the descending order, nulls last" } ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_min_order_by", - "enumValues": null, - "description": "order by min() on columns of table \"packets\"", + "description": "column ordering options", "fields": null }, { @@ -22693,31 +24868,82 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "packets_mutation_response", + "name": "query_root", "enumValues": null, - "description": "response of any mutation on the table \"packets\"", + "description": "query root", "fields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" } - }, - "description": "number of affected rows by the mutation" - }, - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "returning", + "name": "accounts", "type": { "kind": "NON_NULL", "name": null, @@ -22729,70 +24955,196 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packets", + "name": "accounts", "ofType": null } } } }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ + "description": "fetch data from the table: \"accounts\"" + }, { - "name": "data", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "accounts_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_insert_input", + "kind": "OBJECT", + "name": "accounts_aggregate", "ofType": null } }, - "description": null + "description": "fetch aggregated fields from the table: \"accounts\"" }, { - "name": "on_conflict", - "defaultValue": null, + "args": [ + { + "name": "address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "accounts_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "packets_on_conflict", + "kind": "OBJECT", + "name": "accounts", "ofType": null }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"packets\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "constraint", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_constraint", - "ofType": null - } - }, - "description": null + "description": "fetch data from the table: \"accounts\" using primary key columns" }, { - "name": "update_columns", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "blocks_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "blocks", "type": { "kind": "NON_NULL", "name": null, @@ -22803,900 +25155,1547 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "packets_update_column", + "kind": "OBJECT", + "name": "blocks", "ofType": null } } } }, - "description": null + "description": "fetch data from the table: \"blocks\"" }, { - "name": "where", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "blocks_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "blocks_aggregate", "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "blocks_aggregate", + "ofType": null + } }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"packets\"", - "fields": null - }, - { - "inputFields": [ + "description": "fetch aggregated fields from the table: \"blocks\"" + }, { - "name": "block", - "defaultValue": null, + "args": [ + { + "name": "height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "blocks_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_order_by", + "kind": "OBJECT", + "name": "blocks", "ofType": null }, - "description": null + "description": "fetch data from the table: \"blocks\" using primary key columns" }, { - "name": "block_height", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_revisions", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_source_revisions", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"data_source_revisions\"" }, { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "is_incoming", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_revisions_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_source_revisions_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"data_source_revisions\"" }, { - "name": "my_channel", - "defaultValue": null, + "args": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_revisions_by_pk", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "data_source_revisions", "ofType": null }, - "description": null + "description": "fetch data from the table: \"data_source_revisions\" using primary key columns" }, { - "name": "my_port", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_sources", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_sources", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"data_sources\"" }, { - "name": "sequence", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_sources_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_sources_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"data_sources\"" }, { - "name": "type", - "defaultValue": null, + "args": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_sources_by_pk", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "data_sources", "ofType": null }, - "description": null + "description": "fetch data from the table: \"data_sources\" using primary key columns" }, { - "name": "your_chain_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "delegations", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"delegations\"" }, { - "name": "your_channel", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "delegations_aggregate", + "ofType": null + } }, - "description": null - }, - { - "name": "your_port", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"packets\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "detail", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_prepend_input", - "enumValues": null, - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "packets_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "detail", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "is_incoming", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "my_channel", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "my_port", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "type", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "your_chain_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "your_channel", - "description": "column name" + "description": "fetch aggregated fields from the table: \"delegations\"" }, { + "args": [ + { + "name": "delegator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "your_port", - "description": "column name" - } - ], - "description": "select columns of table \"packets\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, + "name": "delegations_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "delegations", "ofType": null }, - "description": null + "description": "fetch data from the table: \"delegations\" using primary key columns" }, { - "name": "detail", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_view_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_view_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_view_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations_view", "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "delegations_view", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"delegations_view\"" }, { - "name": "is_incoming", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_view_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_view_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_view_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations_view_aggregate", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "delegations_view_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"delegations_view\"" }, { - "name": "my_channel", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "metadata_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "metadata_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "metadata", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "metadata", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"metadata\"" }, { - "name": "my_port", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "metadata_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "metadata_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "metadata_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "metadata_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"metadata\"" }, { - "name": "sequence", - "defaultValue": null, + "args": [ + { + "name": "key", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "metadata_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "metadata", "ofType": null }, - "description": null + "description": "fetch data from the table: \"metadata\" using primary key columns" }, { - "name": "type", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "your_chain_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, - { - "name": "your_channel", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_codes", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_codes", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"oracle_script_codes\"" }, { - "name": "your_port", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_set_input", - "enumValues": null, - "description": "input type for updating data in table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_stddev_fields", - "enumValues": null, - "description": "aggregate stddev on columns", - "fields": [ - { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "oracle_script_codes_aggregate", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_codes_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"oracle_script_codes\"" }, { - "args": [], + "args": [ + { + "name": "code_hash", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, + "name": "oracle_script_codes_by_pk", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "oracle_script_codes", "ofType": null }, - "description": null + "description": "fetch data from the table: \"oracle_script_codes\" using primary key columns" }, { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_stddev_order_by", - "enumValues": null, - "description": "order by stddev() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "oracle_script_revisions", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"oracle_script_revisions\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, + "name": "oracle_script_revisions_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" }, { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "args": [], + "args": [ + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "oracle_script_revisions_by_pk", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "oracle_script_revisions", "ofType": null }, - "description": null + "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_stddev_samp_order_by", - "enumValues": null, - "description": "order by stddev_samp() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_sum_fields", - "enumValues": null, - "description": "aggregate sum on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_sum_order_by", - "enumValues": null, - "description": "order by sum() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "packets_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "detail", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "is_incoming", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "my_channel", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "my_port", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "type", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "your_chain_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "your_channel", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "your_port", - "description": "column name" - } - ], - "description": "update columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_var_pop_fields", - "enumValues": null, - "description": "aggregate var_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_var_pop_order_by", - "enumValues": null, - "description": "order by var_pop() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_var_samp_fields", - "enumValues": null, - "description": "aggregate var_samp on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_var_samp_order_by", - "enumValues": null, - "description": "order by var_samp() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "packets_variance_fields", - "enumValues": null, - "description": "aggregate variance on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "packets_variance_order_by", - "enumValues": null, - "description": "order by variance() on columns of table \"packets\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "query_root", - "enumValues": null, - "description": "query root", - "fields": [ { "args": [ { @@ -23710,7 +26709,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "accounts_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -23748,7 +26747,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "accounts_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -23760,7 +26759,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -23768,7 +26767,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "accounts", + "name": "oracle_scripts", "type": { "kind": "NON_NULL", "name": null, @@ -23780,13 +26779,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "accounts", + "name": "oracle_scripts", "ofType": null } } } }, - "description": "fetch data from the table: \"accounts\"" + "description": "fetch data from the table: \"oracle_scripts\"" }, { "args": [ @@ -23801,7 +26800,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "accounts_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -23839,7 +26838,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "accounts_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -23851,7 +26850,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -23859,29 +26858,29 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "accounts_aggregate", + "name": "oracle_scripts_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "accounts_aggregate", + "name": "oracle_scripts_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"accounts\"" + "description": "fetch aggregated fields from the table: \"oracle_scripts\"" }, { "args": [ { - "name": "address", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null } }, @@ -23890,13 +26889,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "accounts_by_pk", + "name": "oracle_scripts_by_pk", "type": { "kind": "OBJECT", - "name": "accounts", + "name": "oracle_scripts", "ofType": null }, - "description": "fetch data from the table: \"accounts\" using primary key columns" + "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" }, { "args": [ @@ -23911,7 +26910,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "blocks_select_column", + "name": "raw_data_requests_select_column", "ofType": null } } @@ -23949,7 +26948,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_order_by", + "name": "raw_data_requests_order_by", "ofType": null } } @@ -23961,7 +26960,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", + "name": "raw_data_requests_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -23969,7 +26968,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "blocks", + "name": "raw_data_requests", "type": { "kind": "NON_NULL", "name": null, @@ -23981,13 +26980,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "blocks", + "name": "raw_data_requests", "ofType": null } } } }, - "description": "fetch data from the table: \"blocks\"" + "description": "fetch data from the table: \"raw_data_requests\"" }, { "args": [ @@ -24002,7 +27001,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "blocks_select_column", + "name": "raw_data_requests_select_column", "ofType": null } } @@ -24040,7 +27039,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_order_by", + "name": "raw_data_requests_order_by", "ofType": null } } @@ -24052,7 +27051,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", + "name": "raw_data_requests_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24060,22 +27059,36 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "blocks_aggregate", + "name": "raw_data_requests_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "blocks_aggregate", + "name": "raw_data_requests_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"blocks\"" + "description": "fetch aggregated fields from the table: \"raw_data_requests\"" }, { "args": [ { - "name": "height", + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "request_id", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -24091,13 +27104,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "blocks_by_pk", + "name": "raw_data_requests_by_pk", "type": { "kind": "OBJECT", - "name": "blocks", + "name": "raw_data_requests", "ofType": null }, - "description": "fetch data from the table: \"blocks\" using primary key columns" + "description": "fetch data from the table: \"raw_data_requests\" using primary key columns" }, { "args": [ @@ -24112,7 +27125,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "data_source_revisions_select_column", + "name": "related_data_sources_select_column", "ofType": null } } @@ -24150,7 +27163,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", + "name": "related_data_sources_order_by", "ofType": null } } @@ -24162,7 +27175,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", + "name": "related_data_sources_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24170,7 +27183,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions", + "name": "related_data_sources", "type": { "kind": "NON_NULL", "name": null, @@ -24182,13 +27195,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "data_source_revisions", + "name": "related_data_sources", "ofType": null } } } }, - "description": "fetch data from the table: \"data_source_revisions\"" + "description": "fetch data from the table: \"related_data_sources\"" }, { "args": [ @@ -24203,7 +27216,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "data_source_revisions_select_column", + "name": "related_data_sources_select_column", "ofType": null } } @@ -24241,7 +27254,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", + "name": "related_data_sources_order_by", "ofType": null } } @@ -24253,7 +27266,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", + "name": "related_data_sources_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24261,17 +27274,17 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions_aggregate", + "name": "related_data_sources_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "data_source_revisions_aggregate", + "name": "related_data_sources_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"data_source_revisions\"" + "description": "fetch aggregated fields from the table: \"related_data_sources\"" }, { "args": [ @@ -24290,7 +27303,7 @@ "description": null }, { - "name": "revision_number", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -24306,13 +27319,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions_by_pk", + "name": "related_data_sources_by_pk", "type": { "kind": "OBJECT", - "name": "data_source_revisions", + "name": "related_data_sources", "ofType": null }, - "description": "fetch data from the table: \"data_source_revisions\" using primary key columns" + "description": "fetch data from the table: \"related_data_sources\" using primary key columns" }, { "args": [ @@ -24327,7 +27340,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "data_sources_select_column", + "name": "report_details_select_column", "ofType": null } } @@ -24365,7 +27378,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", + "name": "report_details_order_by", "ofType": null } } @@ -24377,7 +27390,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", + "name": "report_details_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24385,7 +27398,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "data_sources", + "name": "report_details", "type": { "kind": "NON_NULL", "name": null, @@ -24397,13 +27410,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "data_sources", + "name": "report_details", "ofType": null } } } }, - "description": "fetch data from the table: \"data_sources\"" + "description": "fetch data from the table: \"report_details\"" }, { "args": [ @@ -24418,7 +27431,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "data_sources_select_column", + "name": "report_details_select_column", "ofType": null } } @@ -24456,7 +27469,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", + "name": "report_details_order_by", "ofType": null } } @@ -24468,7 +27481,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", + "name": "report_details_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24476,22 +27489,22 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "data_sources_aggregate", + "name": "report_details_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "data_sources_aggregate", + "name": "report_details_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"data_sources\"" + "description": "fetch aggregated fields from the table: \"report_details\"" }, { "args": [ { - "name": "id", + "name": "external_id", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -24503,32 +27516,60 @@ } }, "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_sources_by_pk", - "type": { - "kind": "OBJECT", - "name": "data_sources", - "ofType": null - }, - "description": "fetch data from the table: \"data_sources\" using primary key columns" - }, - { - "args": [ + }, { - "name": "distinct_on", + "name": "request_id", "defaultValue": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details_by_pk", + "type": { + "kind": "OBJECT", + "name": "report_details", + "ofType": null + }, + "description": "fetch data from the table: \"report_details\" using primary key columns" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_select_column", + "name": "reports_select_column", "ofType": null } } @@ -24566,7 +27607,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_order_by", + "name": "reports_order_by", "ofType": null } } @@ -24578,7 +27619,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24586,7 +27627,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations", + "name": "reports", "type": { "kind": "NON_NULL", "name": null, @@ -24598,13 +27639,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations", + "name": "reports", "ofType": null } } } }, - "description": "fetch data from the table: \"delegations\"" + "description": "fetch data from the table: \"reports\"" }, { "args": [ @@ -24619,7 +27660,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_select_column", + "name": "reports_select_column", "ofType": null } } @@ -24657,7 +27698,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_order_by", + "name": "reports_order_by", "ofType": null } } @@ -24669,7 +27710,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24677,36 +27718,36 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_aggregate", + "name": "reports_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations_aggregate", + "name": "reports_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"delegations\"" + "description": "fetch aggregated fields from the table: \"reports\"" }, { "args": [ { - "name": "delegator_address", + "name": "request_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null } }, "description": null }, { - "name": "validator_address", + "name": "validator", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -24722,13 +27763,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_by_pk", + "name": "reports_by_pk", "type": { "kind": "OBJECT", - "name": "delegations", + "name": "reports", "ofType": null }, - "description": "fetch data from the table: \"delegations\" using primary key columns" + "description": "fetch data from the table: \"reports\" using primary key columns" }, { "args": [ @@ -24743,7 +27784,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_view_select_column", + "name": "requested_validators_select_column", "ofType": null } } @@ -24781,7 +27822,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_view_order_by", + "name": "requested_validators_order_by", "ofType": null } } @@ -24793,7 +27834,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_view_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24801,7 +27842,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_view", + "name": "requested_validators", "type": { "kind": "NON_NULL", "name": null, @@ -24813,13 +27854,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations_view", + "name": "requested_validators", "ofType": null } } } }, - "description": "fetch data from the table: \"delegations_view\"" + "description": "fetch data from the table: \"requested_validators\"" }, { "args": [ @@ -24834,7 +27875,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_view_select_column", + "name": "requested_validators_select_column", "ofType": null } } @@ -24872,7 +27913,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_view_order_by", + "name": "requested_validators_order_by", "ofType": null } } @@ -24884,7 +27925,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_view_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24892,17 +27933,58 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_view_aggregate", + "name": "requested_validators_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations_view_aggregate", + "name": "requested_validators_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"delegations_view\"" + "description": "fetch aggregated fields from the table: \"requested_validators\"" + }, + { + "args": [ + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators_by_pk", + "type": { + "kind": "OBJECT", + "name": "requested_validators", + "ofType": null + }, + "description": "fetch data from the table: \"requested_validators\" using primary key columns" }, { "args": [ @@ -24917,7 +27999,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "metadata_select_column", + "name": "requests_select_column", "ofType": null } } @@ -24955,7 +28037,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "metadata_order_by", + "name": "requests_order_by", "ofType": null } } @@ -24967,7 +28049,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", + "name": "requests_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -24975,7 +28057,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "metadata", + "name": "requests", "type": { "kind": "NON_NULL", "name": null, @@ -24987,13 +28069,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "metadata", + "name": "requests", "ofType": null } } } }, - "description": "fetch data from the table: \"metadata\"" + "description": "fetch data from the table: \"requests\"" }, { "args": [ @@ -25008,7 +28090,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "metadata_select_column", + "name": "requests_select_column", "ofType": null } } @@ -25046,7 +28128,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "metadata_order_by", + "name": "requests_order_by", "ofType": null } } @@ -25058,7 +28140,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", + "name": "requests_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25066,29 +28148,29 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "metadata_aggregate", + "name": "requests_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "metadata_aggregate", + "name": "requests_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"metadata\"" + "description": "fetch aggregated fields from the table: \"requests\"" }, { "args": [ { - "name": "key", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null } }, @@ -25097,13 +28179,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "metadata_by_pk", + "name": "requests_by_pk", "type": { "kind": "OBJECT", - "name": "metadata", + "name": "requests", "ofType": null }, - "description": "fetch data from the table: \"metadata\" using primary key columns" + "description": "fetch data from the table: \"requests\" using primary key columns" }, { "args": [ @@ -25118,7 +28200,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "transactions_select_column", "ofType": null } } @@ -25156,7 +28238,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "transactions_order_by", "ofType": null } } @@ -25168,7 +28250,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "transactions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25176,7 +28258,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "transactions", "type": { "kind": "NON_NULL", "name": null, @@ -25188,13 +28270,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "transactions", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_revisions\"" + "description": "fetch data from the table: \"transactions\"" }, { "args": [ @@ -25209,7 +28291,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "transactions_select_column", "ofType": null } } @@ -25247,7 +28329,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "transactions_order_by", "ofType": null } } @@ -25259,7 +28341,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "transactions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25267,43 +28349,29 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "transactions_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "name": "transactions_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" + "description": "fetch aggregated fields from the table: \"transactions\"" }, { "args": [ { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", + "name": "tx_hash", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "bytea", "ofType": null } }, @@ -25312,13 +28380,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_by_pk", + "name": "transactions_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "transactions", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" + "description": "fetch data from the table: \"transactions\" using primary key columns" }, { "args": [ @@ -25333,7 +28401,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "unbonding_delegations_select_column", "ofType": null } } @@ -25371,7 +28439,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "unbonding_delegations_order_by", "ofType": null } } @@ -25383,7 +28451,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25391,7 +28459,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts", + "name": "unbonding_delegations", "type": { "kind": "NON_NULL", "name": null, @@ -25403,13 +28471,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "unbonding_delegations", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_scripts\"" + "description": "fetch data from the table: \"unbonding_delegations\"" }, { "args": [ @@ -25424,7 +28492,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "unbonding_delegations_select_column", "ofType": null } } @@ -25462,7 +28530,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "unbonding_delegations_order_by", "ofType": null } } @@ -25474,7 +28542,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25482,44 +28550,17 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_aggregate", + "name": "unbonding_delegations_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts_aggregate", + "name": "unbonding_delegations_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_scripts\"" - }, - { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_scripts_by_pk", - "type": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null - }, - "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" + "description": "fetch aggregated fields from the table: \"unbonding_delegations\"" }, { "args": [ @@ -25534,7 +28575,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packets_select_column", + "name": "validator_last_10000_votes_select_column", "ofType": null } } @@ -25572,7 +28613,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packets_order_by", + "name": "validator_last_10000_votes_order_by", "ofType": null } } @@ -25584,7 +28625,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", + "name": "validator_last_10000_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25592,7 +28633,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "packets", + "name": "validator_last_10000_votes", "type": { "kind": "NON_NULL", "name": null, @@ -25604,13 +28645,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packets", + "name": "validator_last_10000_votes", "ofType": null } } } }, - "description": "fetch data from the table: \"packets\"" + "description": "fetch data from the table: \"validator_last_10000_votes\"" }, { "args": [ @@ -25625,7 +28666,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packets_select_column", + "name": "validator_last_10000_votes_select_column", "ofType": null } } @@ -25663,7 +28704,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packets_order_by", + "name": "validator_last_10000_votes_order_by", "ofType": null } } @@ -25675,7 +28716,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", + "name": "validator_last_10000_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25683,86 +28724,108 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "packets_aggregate", + "name": "validator_last_10000_votes_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "packets_aggregate", + "name": "validator_last_10000_votes_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"packets\"" + "description": "fetch aggregated fields from the table: \"validator_last_10000_votes\"" }, { "args": [ { - "name": "is_incoming", + "name": "distinct_on", "defaultValue": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_1000_votes_select_column", + "ofType": null + } } }, - "description": null + "description": "distinct select on columns" }, { - "name": "my_channel", + "name": "limit", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "description": null + "description": "limit the number of rows returned" }, { - "name": "my_port", + "name": "offset", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "description": null + "description": "skip the first n rows. Use only with order_by" }, { - "name": "sequence", + "name": "order_by", "defaultValue": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_order_by", + "ofType": null + } } }, - "description": null + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" } ], "isDeprecated": false, "deprecationReason": null, - "name": "packets_by_pk", + "name": "validator_last_1000_votes", "type": { - "kind": "OBJECT", - "name": "packets", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_1000_votes", + "ofType": null + } + } + } }, - "description": "fetch data from the table: \"packets\" using primary key columns" + "description": "fetch data from the table: \"validator_last_1000_votes\"" }, { "args": [ @@ -25777,7 +28840,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_select_column", + "name": "validator_last_1000_votes_select_column", "ofType": null } } @@ -25815,7 +28878,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", + "name": "validator_last_1000_votes_order_by", "ofType": null } } @@ -25827,7 +28890,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "validator_last_1000_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25835,25 +28898,17 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests", + "name": "validator_last_1000_votes_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "raw_data_requests", - "ofType": null - } - } + "kind": "OBJECT", + "name": "validator_last_1000_votes_aggregate", + "ofType": null } }, - "description": "fetch data from the table: \"raw_data_requests\"" + "description": "fetch aggregated fields from the table: \"validator_last_1000_votes\"" }, { "args": [ @@ -25868,7 +28923,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_select_column", + "name": "validator_last_250_votes_select_column", "ofType": null } } @@ -25906,7 +28961,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", + "name": "validator_last_250_votes_order_by", "ofType": null } } @@ -25918,7 +28973,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "validator_last_250_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -25926,58 +28981,108 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_aggregate", + "name": "validator_last_250_votes", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "raw_data_requests_aggregate", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_250_votes", + "ofType": null + } + } } }, - "description": "fetch aggregated fields from the table: \"raw_data_requests\"" + "description": "fetch data from the table: \"validator_last_250_votes\"" }, { "args": [ { - "name": "external_id", + "name": "distinct_on", "defaultValue": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_250_votes_select_column", + "ofType": null + } } }, - "description": null + "description": "distinct select on columns" }, { - "name": "request_id", + "name": "limit", "defaultValue": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_order_by", + "ofType": null + } } }, - "description": null + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" } ], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_by_pk", + "name": "validator_last_250_votes_aggregate", "type": { - "kind": "OBJECT", - "name": "raw_data_requests", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_250_votes_aggregate", + "ofType": null + } }, - "description": "fetch data from the table: \"raw_data_requests\" using primary key columns" + "description": "fetch aggregated fields from the table: \"validator_last_250_votes\"" }, { "args": [ @@ -25992,7 +29097,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "related_data_sources_select_column", + "name": "validator_votes_select_column", "ofType": null } } @@ -26030,7 +29135,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", + "name": "validator_votes_order_by", "ofType": null } } @@ -26042,7 +29147,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "validator_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26050,7 +29155,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources", + "name": "validator_votes", "type": { "kind": "NON_NULL", "name": null, @@ -26062,13 +29167,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "validator_votes", "ofType": null } } } }, - "description": "fetch data from the table: \"related_data_sources\"" + "description": "fetch data from the table: \"validator_votes\"" }, { "args": [ @@ -26083,7 +29188,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "related_data_sources_select_column", + "name": "validator_votes_select_column", "ofType": null } } @@ -26121,7 +29226,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", + "name": "validator_votes_order_by", "ofType": null } } @@ -26133,7 +29238,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "validator_votes_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26141,22 +29246,22 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources_aggregate", + "name": "validator_votes_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "related_data_sources_aggregate", + "name": "validator_votes_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"related_data_sources\"" + "description": "fetch aggregated fields from the table: \"validator_votes\"" }, { "args": [ { - "name": "data_source_id", + "name": "block_height", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -26170,14 +29275,14 @@ "description": null }, { - "name": "oracle_script_id", + "name": "consensus_address", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null } }, @@ -26186,13 +29291,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources_by_pk", + "name": "validator_votes_by_pk", "type": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "validator_votes", "ofType": null }, - "description": "fetch data from the table: \"related_data_sources\" using primary key columns" + "description": "fetch data from the table: \"validator_votes\" using primary key columns" }, { "args": [ @@ -26207,7 +29312,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "report_details_select_column", + "name": "validators_select_column", "ofType": null } } @@ -26245,7 +29350,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_order_by", + "name": "validators_order_by", "ofType": null } } @@ -26257,7 +29362,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26265,7 +29370,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "report_details", + "name": "validators", "type": { "kind": "NON_NULL", "name": null, @@ -26277,13 +29382,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details", + "name": "validators", "ofType": null } } } }, - "description": "fetch data from the table: \"report_details\"" + "description": "fetch data from the table: \"validators\"" }, { "args": [ @@ -26298,7 +29403,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "report_details_select_column", + "name": "validators_select_column", "ofType": null } } @@ -26336,7 +29441,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_order_by", + "name": "validators_order_by", "ofType": null } } @@ -26348,7 +29453,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26356,50 +29461,22 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "report_details_aggregate", + "name": "validators_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details_aggregate", + "name": "validators_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"report_details\"" + "description": "fetch aggregated fields from the table: \"validators\"" }, { "args": [ { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", + "name": "operator_address", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -26415,301 +29492,149 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "report_details_by_pk", + "name": "validators_by_pk", "type": { "kind": "OBJECT", - "name": "report_details", + "name": "validators", "ofType": null }, - "description": "fetch data from the table: \"report_details\" using primary key columns" + "description": "fetch data from the table: \"validators\" using primary key columns" + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests", + "enumValues": null, + "description": "columns and relationships of \"raw_data_requests\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "calldata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_sources", + "ofType": null } - ], + }, + "description": "An object relationship" + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports", + "name": "data_source_id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "fetch data from the table: \"reports\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null } - ], + }, + "description": null + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports_aggregate", + "name": "request", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "reports_aggregate", + "name": "requests", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"reports\"" + "description": "An object relationship" }, { - "args": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null } - ], + }, + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_aggregate", + "enumValues": null, + "description": "aggregated selection of \"raw_data_requests\"", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports_by_pk", + "name": "aggregate", "type": { "kind": "OBJECT", - "name": "reports", + "name": "raw_data_requests_aggregate_fields", "ofType": null }, - "description": "fetch data from the table: \"reports\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators", + "name": "nodes", "type": { "kind": "NON_NULL", "name": null, @@ -26721,18 +29646,41 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "requested_validators", + "name": "raw_data_requests", "ofType": null } } } }, - "description": "fetch data from the table: \"requested_validators\"" + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"raw_data_requests\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "raw_data_requests_avg_fields", + "ofType": null + }, + "description": null }, { "args": [ { - "name": "distinct_on", + "name": "columns", "defaultValue": null, "type": { "kind": "LIST", @@ -26742,765 +29690,270 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requested_validators_select_column", + "name": "raw_data_requests_select_column", "ofType": null } } }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" + "description": null }, { - "name": "offset", + "name": "distinct", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "Boolean", "ofType": null }, - "description": "filter the rows returned" + "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_aggregate", + "name": "count", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requested_validators_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"requested_validators\"" + "description": null }, { - "args": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_by_pk", + "name": "max", "type": { "kind": "OBJECT", - "name": "requested_validators", + "name": "raw_data_requests_max_fields", "ofType": null }, - "description": "fetch data from the table: \"requested_validators\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests", + "name": "min", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "raw_data_requests_min_fields", + "ofType": null }, - "description": "fetch data from the table: \"requests\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests_aggregate", + "name": "stddev", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "raw_data_requests_stddev_fields", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"requests\"" + "description": null }, { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests_by_pk", + "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "requests", + "name": "raw_data_requests_stddev_pop_fields", "ofType": null }, - "description": "fetch data from the table: \"requests\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transactions", + "name": "stddev_samp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "raw_data_requests_stddev_samp_fields", + "ofType": null }, - "description": "fetch data from the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transactions_aggregate", + "name": "sum", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "raw_data_requests_sum_fields", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transactions_by_pk", + "name": "var_pop", "type": { "kind": "OBJECT", - "name": "transactions", + "name": "raw_data_requests_var_pop_fields", "ofType": null }, - "description": "fetch data from the table: \"transactions\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_1000_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_1000_votes", + "name": "var_samp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_1000_votes", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "raw_data_requests_var_samp_fields", + "ofType": null }, - "description": "fetch data from the table: \"validator_last_1000_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_1000_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_1000_votes_aggregate", + "name": "variance", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_1000_votes_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "raw_data_requests_variance_fields", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validator_last_1000_votes\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "avg", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_avg_order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_250_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "validator_last_250_votes", + "name": "count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "max", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_max_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "min", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_min_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_stddev_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_stddev_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_stddev_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sum", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_sum_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_var_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_var_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "variance", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_variance_order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, @@ -27511,530 +29964,3156 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "validator_last_250_votes", + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_insert_input", "ofType": null } } } }, - "description": "fetch data from the table: \"validator_last_250_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_250_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_arr_rel_insert_input", + "enumValues": null, + "description": "input type for inserting array relation for remote table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_avg_fields", + "enumValues": null, + "description": "aggregate avg on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_250_votes_aggregate", + "name": "data_source_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_250_votes_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validator_last_250_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes", + "name": "external_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_votes", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"validator_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_avg_order_by", + "enumValues": null, + "description": "order by avg() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "_and", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "_not", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "_or", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "calldata", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "request", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_bool_exp", + "enumValues": null, + "description": "Boolean expression to filter rows from the table \"raw_data_requests\". All fields are combined with a logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_constraint", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_inc_input", + "enumValues": null, + "description": "input type for incrementing integer column in table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "calldata", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + }, + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "request", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_max_fields", + "enumValues": null, + "description": "aggregate max on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"raw_data_requests\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "affected_rows", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "description": "number of affected rows by the mutation" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "returning", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "raw_data_requests", + "ofType": null + } + } + } + }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_insert_input", + "ofType": null + } + }, + "description": null + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "constraint", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_constraint", + "ofType": null + } + }, + "description": null + }, + { + "name": "update_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_update_column", + "ofType": null + } + } + } + }, + "description": null + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "calldata", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_select_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "calldata", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "description": "column name" + } + ], + "description": "select columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "calldata", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_set_input", + "enumValues": null, + "description": "input type for updating data in table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_stddev_samp_order_by", + "enumValues": null, + "description": "order by stddev_samp() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_sum_order_by", + "enumValues": null, + "description": "order by sum() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_update_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "calldata", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "description": "column name" + } + ], + "description": "update columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_var_pop_order_by", + "enumValues": null, + "description": "order by var_pop() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_var_samp_fields", + "enumValues": null, + "description": "aggregate var_samp on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_var_samp_order_by", + "enumValues": null, + "description": "order by var_samp() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "raw_data_requests_variance_fields", + "enumValues": null, + "description": "aggregate variance on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "external_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "raw_data_requests_variance_order_by", + "enumValues": null, + "description": "order by variance() on columns of table \"raw_data_requests\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources", + "enumValues": null, + "description": "columns and relationships of \"related_data_sources\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_sources", + "ofType": null + } + }, + "description": "An object relationship" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } + }, + "description": "An object relationship" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_aggregate", + "enumValues": null, + "description": "aggregated selection of \"related_data_sources\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_aggregate_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources", + "ofType": null + } + } + } + }, + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"related_data_sources\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_avg_fields", + "ofType": null + }, + "description": null + }, + { + "args": [ { - "name": "order_by", + "name": "columns", "defaultValue": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_order_by", - "ofType": null - } + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "max", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_max_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_min_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_stddev_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev_pop", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_stddev_pop_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev_samp", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_stddev_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_sum_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "var_pop", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_var_pop_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "var_samp", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_var_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "related_data_sources_variance_fields", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "avg", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_avg_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "max", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_max_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "min", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_min_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_stddev_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_stddev_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_stddev_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sum", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_sum_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_var_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_var_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "variance", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_variance_order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_insert_input", + "ofType": null + } + } + } + }, + "description": null + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_arr_rel_insert_input", + "enumValues": null, + "description": "input type for inserting array relation for remote table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_avg_fields", + "enumValues": null, + "description": "aggregate avg on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_avg_order_by", + "enumValues": null, + "description": "order by avg() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "_and", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "_not", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "_or", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_bool_exp", + "enumValues": null, + "description": "Boolean expression to filter rows from the table \"related_data_sources\". All fields are combined with a logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_constraint", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_inc_input", + "enumValues": null, + "description": "input type for incrementing integer column in table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_max_fields", + "enumValues": null, + "description": "aggregate max on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"related_data_sources\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "affected_rows", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "description": "number of affected rows by the mutation" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "returning", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources", + "ofType": null + } + } + } + }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_insert_input", + "ofType": null + } + }, + "description": null + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "constraint", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_constraint", + "ofType": null + } + }, + "description": null + }, + { + "name": "update_columns", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_update_column", + "ofType": null } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + } } - ], + }, + "description": null + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_select_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + } + ], + "description": "select columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_set_input", + "enumValues": null, + "description": "input type for updating data in table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_stddev_samp_order_by", + "enumValues": null, + "description": "order by stddev_samp() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_sum_order_by", + "enumValues": null, + "description": "order by sum() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_update_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + } + ], + "description": "update columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes_aggregate", + "name": "data_source_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_votes_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validator_votes\"" + "description": null }, { - "args": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "consensus_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes_by_pk", + "name": "oracle_script_id", "type": { - "kind": "OBJECT", - "name": "validator_votes", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"validator_votes\" using primary key columns" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_var_pop_order_by", + "enumValues": null, + "description": "order by var_pop() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_var_samp_fields", + "enumValues": null, + "description": "aggregate var_samp on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators", + "name": "data_source_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validators", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"validators\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators_aggregate", + "name": "oracle_script_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validators_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validators\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "operator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_var_samp_order_by", + "enumValues": null, + "description": "order by var_samp() on columns of table \"related_data_sources\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "related_data_sources_variance_fields", + "enumValues": null, + "description": "aggregate variance on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators_by_pk", + "name": "data_source_id", "type": { - "kind": "OBJECT", - "name": "validators", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"validators\" using primary key columns" + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null } ] }, + { + "inputFields": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "related_data_sources_variance_order_by", + "enumValues": null, + "description": "order by variance() on columns of table \"related_data_sources\"", + "fields": null + }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests", + "name": "report_details", "enumValues": null, - "description": "columns and relationships of \"raw_data_requests\"", + "description": "columns and relationships of \"report_details\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "calldata", + "name": "data", "type": { "kind": "NON_NULL", "name": null, @@ -28050,29 +33129,29 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source", + "name": "data_source_id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "data_sources", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "exitcode", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null } }, @@ -28098,29 +33177,41 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request", + "name": "report", + "type": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + }, + "description": "An object relationship" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "requests", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "validator", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null } }, @@ -28133,9 +33224,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_aggregate", + "name": "report_details_aggregate", "enumValues": null, - "description": "aggregated selection of \"raw_data_requests\"", + "description": "aggregated selection of \"report_details\"", "fields": [ { "args": [], @@ -28144,7 +33235,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "raw_data_requests_aggregate_fields", + "name": "report_details_aggregate_fields", "ofType": null }, "description": null @@ -28165,7 +33256,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "report_details", "ofType": null } } @@ -28180,9 +33271,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_aggregate_fields", + "name": "report_details_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"raw_data_requests\"", + "description": "aggregate fields of \"report_details\"", "fields": [ { "args": [], @@ -28191,7 +33282,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "raw_data_requests_avg_fields", + "name": "report_details_avg_fields", "ofType": null }, "description": null @@ -28209,7 +33300,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_select_column", + "name": "report_details_select_column", "ofType": null } } @@ -28244,7 +33335,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "raw_data_requests_max_fields", + "name": "report_details_max_fields", "ofType": null }, "description": null @@ -28256,7 +33347,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "raw_data_requests_min_fields", + "name": "report_details_min_fields", "ofType": null }, "description": null @@ -28268,7 +33359,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "raw_data_requests_stddev_fields", + "name": "report_details_stddev_fields", "ofType": null }, "description": null @@ -28280,7 +33371,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "raw_data_requests_stddev_pop_fields", + "name": "report_details_stddev_pop_fields", "ofType": null }, "description": null @@ -28292,7 +33383,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "raw_data_requests_stddev_samp_fields", + "name": "report_details_stddev_samp_fields", "ofType": null }, "description": null @@ -28304,7 +33395,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "raw_data_requests_sum_fields", + "name": "report_details_sum_fields", "ofType": null }, "description": null @@ -28316,7 +33407,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "raw_data_requests_var_pop_fields", + "name": "report_details_var_pop_fields", "ofType": null }, "description": null @@ -28328,7 +33419,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "raw_data_requests_var_samp_fields", + "name": "report_details_var_samp_fields", "ofType": null }, "description": null @@ -28340,7 +33431,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "raw_data_requests_variance_fields", + "name": "report_details_variance_fields", "ofType": null }, "description": null @@ -28354,7 +33445,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_avg_order_by", + "name": "report_details_avg_order_by", "ofType": null }, "description": null @@ -28374,7 +33465,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_max_order_by", + "name": "report_details_max_order_by", "ofType": null }, "description": null @@ -28384,7 +33475,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_min_order_by", + "name": "report_details_min_order_by", "ofType": null }, "description": null @@ -28394,7 +33485,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_stddev_order_by", + "name": "report_details_stddev_order_by", "ofType": null }, "description": null @@ -28404,7 +33495,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_stddev_pop_order_by", + "name": "report_details_stddev_pop_order_by", "ofType": null }, "description": null @@ -28414,7 +33505,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_stddev_samp_order_by", + "name": "report_details_stddev_samp_order_by", "ofType": null }, "description": null @@ -28424,7 +33515,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_sum_order_by", + "name": "report_details_sum_order_by", "ofType": null }, "description": null @@ -28434,7 +33525,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_var_pop_order_by", + "name": "report_details_var_pop_order_by", "ofType": null }, "description": null @@ -28444,7 +33535,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_var_samp_order_by", + "name": "report_details_var_samp_order_by", "ofType": null }, "description": null @@ -28454,7 +33545,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_variance_order_by", + "name": "report_details_variance_order_by", "ofType": null }, "description": null @@ -28463,9 +33554,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_aggregate_order_by", + "name": "report_details_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"raw_data_requests\"", + "description": "order by aggregate values of table \"report_details\"", "fields": null }, { @@ -28484,7 +33575,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_insert_input", + "name": "report_details_insert_input", "ofType": null } } @@ -28497,7 +33588,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_on_conflict", + "name": "report_details_on_conflict", "ofType": null }, "description": null @@ -28506,9 +33597,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_arr_rel_insert_input", + "name": "report_details_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"raw_data_requests\"", + "description": "input type for inserting array relation for remote table \"report_details\"", "fields": null }, { @@ -28516,7 +33607,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_avg_fields", + "name": "report_details_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ @@ -28532,6 +33623,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -28570,6 +33673,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -28594,9 +33707,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_avg_order_by", + "name": "report_details_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"raw_data_requests\"", + "description": "order by avg() on columns of table \"report_details\"", "fields": null }, { @@ -28609,7 +33722,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "report_details_bool_exp", "ofType": null } }, @@ -28620,7 +33733,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "report_details_bool_exp", "ofType": null }, "description": null @@ -28633,14 +33746,14 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "report_details_bool_exp", "ofType": null } }, "description": null }, { - "name": "calldata", + "name": "data", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -28650,21 +33763,21 @@ "description": null }, { - "name": "data_source", + "name": "data_source_id", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "exitcode", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "Int_comparison_exp", "ofType": null }, "description": null @@ -28680,11 +33793,11 @@ "description": null }, { - "name": "request", + "name": "report", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": null @@ -28698,14 +33811,24 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_bool_exp", + "name": "report_details_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"raw_data_requests\". All fields are combined with a logical 'AND'.", + "description": "Boolean expression to filter rows from the table \"report_details\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -28713,16 +33836,16 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_constraint", + "name": "report_details_constraint", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_pkey", + "name": "report_details_pkey", "description": "unique or primary key constraint" } ], - "description": "unique or primary key constraints on table \"raw_data_requests\"", + "description": "unique or primary key constraints on table \"report_details\"", "fields": null }, { @@ -28737,6 +33860,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -28761,15 +33894,15 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_inc_input", + "name": "report_details_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"raw_data_requests\"", + "description": "input type for incrementing integer column in table \"report_details\"", "fields": null }, { "inputFields": [ { - "name": "calldata", + "name": "data", "defaultValue": null, "type": { "kind": "SCALAR", @@ -28779,21 +33912,21 @@ "description": null }, { - "name": "data_source", + "name": "data_source_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_obj_rel_insert_input", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "exitcode", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null }, "description": null @@ -28809,11 +33942,11 @@ "description": null }, { - "name": "request", + "name": "report", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_obj_rel_insert_input", + "name": "reports_obj_rel_insert_input", "ofType": null }, "description": null @@ -28827,14 +33960,24 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_insert_input", + "name": "report_details_insert_input", "enumValues": null, - "description": "input type for inserting data into table \"raw_data_requests\"", + "description": "input type for inserting data into table \"report_details\"", "fields": null }, { @@ -28842,7 +33985,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_max_fields", + "name": "report_details_max_fields", "enumValues": null, "description": "aggregate max on columns", "fields": [ @@ -28858,6 +34001,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -28881,6 +34036,18 @@ "ofType": null }, "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ] }, @@ -28896,6 +34063,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -28915,14 +34092,24 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_max_order_by", + "name": "report_details_max_order_by", "enumValues": null, - "description": "order by max() on columns of table \"raw_data_requests\"", + "description": "order by max() on columns of table \"report_details\"", "fields": null }, { @@ -28930,7 +34117,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_min_fields", + "name": "report_details_min_fields", "enumValues": null, "description": "aggregate min on columns", "fields": [ @@ -28946,6 +34133,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -28969,6 +34168,18 @@ "ofType": null }, "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ] }, @@ -28984,6 +34195,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29003,14 +34224,24 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_min_order_by", + "name": "report_details_min_order_by", "enumValues": null, - "description": "order by min() on columns of table \"raw_data_requests\"", + "description": "order by min() on columns of table \"report_details\"", "fields": null }, { @@ -29018,9 +34249,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_mutation_response", + "name": "report_details_mutation_response", "enumValues": null, - "description": "response of any mutation on the table \"raw_data_requests\"", + "description": "response of any mutation on the table \"report_details\"", "fields": [ { "args": [], @@ -29054,7 +34285,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "report_details", "ofType": null } } @@ -29074,7 +34305,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_insert_input", + "name": "report_details_insert_input", "ofType": null } }, @@ -29085,7 +34316,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_on_conflict", + "name": "report_details_on_conflict", "ofType": null }, "description": null @@ -29094,9 +34325,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_obj_rel_insert_input", + "name": "report_details_obj_rel_insert_input", "enumValues": null, - "description": "input type for inserting object relation for remote table \"raw_data_requests\"", + "description": "input type for inserting object relation for remote table \"report_details\"", "fields": null }, { @@ -29109,7 +34340,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_constraint", + "name": "report_details_constraint", "ofType": null } }, @@ -29129,7 +34360,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_update_column", + "name": "report_details_update_column", "ofType": null } } @@ -29142,7 +34373,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "report_details_bool_exp", "ofType": null }, "description": null @@ -29151,15 +34382,15 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_on_conflict", + "name": "report_details_on_conflict", "enumValues": null, - "description": "on conflict condition type for table \"raw_data_requests\"", + "description": "on conflict condition type for table \"report_details\"", "fields": null }, { "inputFields": [ { - "name": "calldata", + "name": "data", "defaultValue": null, "type": { "kind": "ENUM", @@ -29169,17 +34400,17 @@ "description": null }, { - "name": "data_source", + "name": "data_source_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "exitcode", "defaultValue": null, "type": { "kind": "ENUM", @@ -29199,11 +34430,11 @@ "description": null }, { - "name": "request", + "name": "report", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_order_by", + "name": "reports_order_by", "ofType": null }, "description": null @@ -29217,14 +34448,77 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_order_by", + "name": "report_details_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"raw_data_requests\"", + "description": "ordering options when selecting data from \"report_details\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "report_details_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"report_details\"", "fields": null }, { @@ -29232,40 +34526,52 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_select_column", + "name": "report_details_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "calldata", + "name": "data", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "data_source_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "external_id", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "external_id", + "name": "request_id", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "validator", "description": "column name" } ], - "description": "select columns of table \"raw_data_requests\"", + "description": "select columns of table \"report_details\"", "fields": null }, { "inputFields": [ { - "name": "calldata", + "name": "data", "defaultValue": null, "type": { "kind": "SCALAR", @@ -29284,6 +34590,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29303,14 +34619,24 @@ "ofType": null }, "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_set_input", + "name": "report_details_set_input", "enumValues": null, - "description": "input type for updating data in table \"raw_data_requests\"", + "description": "input type for updating data in table \"report_details\"", "fields": null }, { @@ -29318,7 +34644,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_stddev_fields", + "name": "report_details_stddev_fields", "enumValues": null, "description": "aggregate stddev on columns", "fields": [ @@ -29334,6 +34660,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29372,6 +34710,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29396,9 +34744,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_stddev_order_by", + "name": "report_details_stddev_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"raw_data_requests\"", + "description": "order by stddev() on columns of table \"report_details\"", "fields": null }, { @@ -29406,7 +34754,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_stddev_pop_fields", + "name": "report_details_stddev_pop_fields", "enumValues": null, "description": "aggregate stddev_pop on columns", "fields": [ @@ -29422,6 +34770,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29460,6 +34820,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29484,9 +34854,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_stddev_pop_order_by", + "name": "report_details_stddev_pop_order_by", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"raw_data_requests\"", + "description": "order by stddev_pop() on columns of table \"report_details\"", "fields": null }, { @@ -29494,7 +34864,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_stddev_samp_fields", + "name": "report_details_stddev_samp_fields", "enumValues": null, "description": "aggregate stddev_samp on columns", "fields": [ @@ -29510,6 +34880,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29548,6 +34930,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29572,9 +34964,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_stddev_samp_order_by", + "name": "report_details_stddev_samp_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"raw_data_requests\"", + "description": "order by stddev_samp() on columns of table \"report_details\"", "fields": null }, { @@ -29582,7 +34974,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_sum_fields", + "name": "report_details_sum_fields", "enumValues": null, "description": "aggregate sum on columns", "fields": [ @@ -29598,6 +34990,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29636,6 +35040,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29660,9 +35074,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_sum_order_by", + "name": "report_details_sum_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"raw_data_requests\"", + "description": "order by sum() on columns of table \"report_details\"", "fields": null }, { @@ -29670,12 +35084,12 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_update_column", + "name": "report_details_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "calldata", + "name": "data", "description": "column name" }, { @@ -29684,6 +35098,12 @@ "name": "data_source_id", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, @@ -29695,9 +35115,15 @@ "deprecationReason": null, "name": "request_id", "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "description": "column name" } ], - "description": "update columns of table \"raw_data_requests\"", + "description": "update columns of table \"report_details\"", "fields": null }, { @@ -29705,7 +35131,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_var_pop_fields", + "name": "report_details_var_pop_fields", "enumValues": null, "description": "aggregate var_pop on columns", "fields": [ @@ -29721,6 +35147,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29759,6 +35197,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29783,9 +35231,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_var_pop_order_by", + "name": "report_details_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"raw_data_requests\"", + "description": "order by var_pop() on columns of table \"report_details\"", "fields": null }, { @@ -29793,7 +35241,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_var_samp_fields", + "name": "report_details_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -29809,6 +35257,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29847,6 +35307,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29871,9 +35341,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_var_samp_order_by", + "name": "report_details_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"raw_data_requests\"", + "description": "order by var_samp() on columns of table \"report_details\"", "fields": null }, { @@ -29881,7 +35351,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "raw_data_requests_variance_fields", + "name": "report_details_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -29897,6 +35367,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "exitcode", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -29935,6 +35417,16 @@ }, "description": null }, + { + "name": "exitcode", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "external_id", "defaultValue": null, @@ -29959,9 +35451,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "raw_data_requests_variance_order_by", + "name": "report_details_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"raw_data_requests\"", + "description": "order by variance() on columns of table \"report_details\"", "fields": null }, { @@ -29969,21 +35461,211 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources", + "name": "reports", "enumValues": null, - "description": "columns and relationships of \"related_data_sources\"", + "description": "columns and relationships of \"reports\"", "fields": [ + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "report_details_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "report_details", + "ofType": null + } + } + } + }, + "description": "An array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "report_details_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "report_details_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source", + "name": "reporter", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "data_sources", + "name": "requests", "ofType": null } }, @@ -29993,7 +35675,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "request_id", "type": { "kind": "NON_NULL", "name": null, @@ -30009,13 +35691,13 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script", + "name": "transaction", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "transactions", "ofType": null } }, @@ -30025,17 +35707,49 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "tx_hash", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "bytea", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validatorByValidator", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validators", + "ofType": null + } + }, + "description": "An object relationship" } ] }, @@ -30044,9 +35758,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_aggregate", + "name": "reports_aggregate", "enumValues": null, - "description": "aggregated selection of \"related_data_sources\"", + "description": "aggregated selection of \"reports\"", "fields": [ { "args": [], @@ -30055,7 +35769,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "related_data_sources_aggregate_fields", + "name": "reports_aggregate_fields", "ofType": null }, "description": null @@ -30076,7 +35790,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "reports", "ofType": null } } @@ -30091,9 +35805,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_aggregate_fields", + "name": "reports_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"related_data_sources\"", + "description": "aggregate fields of \"reports\"", "fields": [ { "args": [], @@ -30102,7 +35816,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "related_data_sources_avg_fields", + "name": "reports_avg_fields", "ofType": null }, "description": null @@ -30120,7 +35834,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "related_data_sources_select_column", + "name": "reports_select_column", "ofType": null } } @@ -30155,7 +35869,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "related_data_sources_max_fields", + "name": "reports_max_fields", "ofType": null }, "description": null @@ -30167,7 +35881,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "related_data_sources_min_fields", + "name": "reports_min_fields", "ofType": null }, "description": null @@ -30179,7 +35893,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "related_data_sources_stddev_fields", + "name": "reports_stddev_fields", "ofType": null }, "description": null @@ -30191,7 +35905,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "related_data_sources_stddev_pop_fields", + "name": "reports_stddev_pop_fields", "ofType": null }, "description": null @@ -30203,7 +35917,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "related_data_sources_stddev_samp_fields", + "name": "reports_stddev_samp_fields", "ofType": null }, "description": null @@ -30215,7 +35929,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "related_data_sources_sum_fields", + "name": "reports_sum_fields", "ofType": null }, "description": null @@ -30227,7 +35941,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "related_data_sources_var_pop_fields", + "name": "reports_var_pop_fields", "ofType": null }, "description": null @@ -30239,7 +35953,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "related_data_sources_var_samp_fields", + "name": "reports_var_samp_fields", "ofType": null }, "description": null @@ -30251,7 +35965,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "related_data_sources_variance_fields", + "name": "reports_variance_fields", "ofType": null }, "description": null @@ -30265,7 +35979,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_avg_order_by", + "name": "reports_avg_order_by", "ofType": null }, "description": null @@ -30285,7 +35999,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_max_order_by", + "name": "reports_max_order_by", "ofType": null }, "description": null @@ -30295,7 +36009,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_min_order_by", + "name": "reports_min_order_by", "ofType": null }, "description": null @@ -30305,7 +36019,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_stddev_order_by", + "name": "reports_stddev_order_by", "ofType": null }, "description": null @@ -30315,7 +36029,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_stddev_pop_order_by", + "name": "reports_stddev_pop_order_by", "ofType": null }, "description": null @@ -30325,7 +36039,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_stddev_samp_order_by", + "name": "reports_stddev_samp_order_by", "ofType": null }, "description": null @@ -30335,7 +36049,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_sum_order_by", + "name": "reports_sum_order_by", "ofType": null }, "description": null @@ -30345,7 +36059,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_var_pop_order_by", + "name": "reports_var_pop_order_by", "ofType": null }, "description": null @@ -30355,7 +36069,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_var_samp_order_by", + "name": "reports_var_samp_order_by", "ofType": null }, "description": null @@ -30365,7 +36079,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_variance_order_by", + "name": "reports_variance_order_by", "ofType": null }, "description": null @@ -30374,9 +36088,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_aggregate_order_by", + "name": "reports_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"related_data_sources\"", + "description": "order by aggregate values of table \"reports\"", "fields": null }, { @@ -30395,7 +36109,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_insert_input", + "name": "reports_insert_input", "ofType": null } } @@ -30408,7 +36122,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_on_conflict", + "name": "reports_on_conflict", "ofType": null }, "description": null @@ -30417,9 +36131,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_arr_rel_insert_input", + "name": "reports_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"related_data_sources\"", + "description": "input type for inserting array relation for remote table \"reports\"", "fields": null }, { @@ -30427,7 +36141,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_avg_fields", + "name": "reports_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ @@ -30435,19 +36149,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -30460,17 +36162,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -30483,9 +36175,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_avg_order_by", + "name": "reports_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"related_data_sources\"", + "description": "order by avg() on columns of table \"reports\"", "fields": null }, { @@ -30498,7 +36190,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "reports_bool_exp", "ofType": null } }, @@ -30509,7 +36201,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": null @@ -30522,44 +36214,44 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "reports_bool_exp", "ofType": null } }, "description": null }, { - "name": "data_source", + "name": "report_details", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", + "name": "report_details_bool_exp", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "oracle_script", + "name": "request", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "requests_bool_exp", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -30567,14 +36259,54 @@ "ofType": null }, "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "validatorByValidator", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_bool_exp", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_bool_exp", + "name": "reports_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"related_data_sources\". All fields are combined with a logical 'AND'.", + "description": "Boolean expression to filter rows from the table \"reports\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -30582,32 +36314,22 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_constraint", + "name": "reports_constraint", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources_pkey", + "name": "reports_pkey", "description": "unique or primary key constraint" } ], - "description": "unique or primary key constraints on table \"related_data_sources\"", + "description": "unique or primary key constraints on table \"reports\"", "fields": null }, { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -30620,45 +36342,45 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_inc_input", + "name": "reports_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"related_data_sources\"", + "description": "input type for incrementing integer column in table \"reports\"", "fields": null }, { "inputFields": [ { - "name": "data_source", + "name": "report_details", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_obj_rel_insert_input", + "name": "report_details_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "oracle_script", + "name": "request", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_obj_rel_insert_input", + "name": "requests_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -30666,14 +36388,54 @@ "ofType": null }, "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "validatorByValidator", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_obj_rel_insert_input", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_insert_input", + "name": "reports_insert_input", "enumValues": null, - "description": "input type for inserting data into table \"related_data_sources\"", + "description": "input type for inserting data into table \"reports\"", "fields": null }, { @@ -30681,7 +36443,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_max_fields", + "name": "reports_max_fields", "enumValues": null, "description": "aggregate max on columns", "fields": [ @@ -30689,10 +36451,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "reporter", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -30701,20 +36463,32 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "bigint", "ofType": null }, "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ] }, { "inputFields": [ { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "ENUM", @@ -30724,7 +36498,17 @@ "description": null }, { - "name": "oracle_script_id", + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "validator", "defaultValue": null, "type": { "kind": "ENUM", @@ -30737,9 +36521,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_max_order_by", + "name": "reports_max_order_by", "enumValues": null, - "description": "order by max() on columns of table \"related_data_sources\"", + "description": "order by max() on columns of table \"reports\"", "fields": null }, { @@ -30747,7 +36531,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_min_fields", + "name": "reports_min_fields", "enumValues": null, "description": "aggregate min on columns", "fields": [ @@ -30755,10 +36539,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "reporter", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -30767,20 +36551,32 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "bigint", "ofType": null }, "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ] }, { "inputFields": [ { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "ENUM", @@ -30790,7 +36586,17 @@ "description": null }, { - "name": "oracle_script_id", + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "validator", "defaultValue": null, "type": { "kind": "ENUM", @@ -30803,9 +36609,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_min_order_by", + "name": "reports_min_order_by", "enumValues": null, - "description": "order by min() on columns of table \"related_data_sources\"", + "description": "order by min() on columns of table \"reports\"", "fields": null }, { @@ -30813,9 +36619,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_mutation_response", + "name": "reports_mutation_response", "enumValues": null, - "description": "response of any mutation on the table \"related_data_sources\"", + "description": "response of any mutation on the table \"reports\"", "fields": [ { "args": [], @@ -30849,7 +36655,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "reports", "ofType": null } } @@ -30869,7 +36675,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_insert_input", + "name": "reports_insert_input", "ofType": null } }, @@ -30880,7 +36686,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_on_conflict", + "name": "reports_on_conflict", "ofType": null }, "description": null @@ -30889,9 +36695,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_obj_rel_insert_input", + "name": "reports_obj_rel_insert_input", "enumValues": null, - "description": "input type for inserting object relation for remote table \"related_data_sources\"", + "description": "input type for inserting object relation for remote table \"reports\"", "fields": null }, { @@ -30904,7 +36710,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "related_data_sources_constraint", + "name": "reports_constraint", "ofType": null } }, @@ -30924,7 +36730,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "related_data_sources_update_column", + "name": "reports_update_column", "ofType": null } } @@ -30937,7 +36743,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": null @@ -30946,25 +36752,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_on_conflict", + "name": "reports_on_conflict", "enumValues": null, - "description": "on conflict condition type for table \"related_data_sources\"", + "description": "on conflict condition type for table \"reports\"", "fields": null }, { "inputFields": [ { - "name": "data_source", + "name": "report_details_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", + "name": "report_details_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "ENUM", @@ -30974,17 +36780,47 @@ "description": null }, { - "name": "oracle_script", + "name": "request", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "requests_order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "validator", "defaultValue": null, "type": { "kind": "ENUM", @@ -30992,14 +36828,63 @@ "ofType": null }, "description": null + }, + { + "name": "validatorByValidator", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_order_by", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_order_by", + "name": "reports_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"related_data_sources\"", + "description": "ordering options when selecting data from \"reports\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "reports_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"reports\"", "fields": null }, { @@ -31007,38 +36892,50 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_select_column", + "name": "reports_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "reporter", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", "description": "column name" } ], - "description": "select columns of table \"related_data_sources\"", + "description": "select columns of table \"reports\"", "fields": null }, { "inputFields": [ { - "name": "data_source_id", + "name": "reporter", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -31046,14 +36943,34 @@ "ofType": null }, "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_set_input", + "name": "reports_set_input", "enumValues": null, - "description": "input type for updating data in table \"related_data_sources\"", + "description": "input type for updating data in table \"reports\"", "fields": null }, { @@ -31061,7 +36978,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_stddev_fields", + "name": "reports_stddev_fields", "enumValues": null, "description": "aggregate stddev on columns", "fields": [ @@ -31069,19 +36986,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31094,17 +36999,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31117,37 +37012,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_stddev_order_by", + "name": "reports_stddev_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"related_data_sources\"", + "description": "order by stddev() on columns of table \"reports\"", "fields": null }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "related_data_sources_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "reports_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31160,17 +37043,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31183,9 +37056,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_stddev_pop_order_by", + "name": "reports_stddev_pop_order_by", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"related_data_sources\"", + "description": "order by stddev_pop() on columns of table \"reports\"", "fields": null }, { @@ -31193,7 +37066,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_stddev_samp_fields", + "name": "reports_stddev_samp_fields", "enumValues": null, "description": "aggregate stddev_samp on columns", "fields": [ @@ -31201,19 +37074,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31226,17 +37087,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31249,9 +37100,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_stddev_samp_order_by", + "name": "reports_stddev_samp_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"related_data_sources\"", + "description": "order by stddev_samp() on columns of table \"reports\"", "fields": null }, { @@ -31259,7 +37110,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_sum_fields", + "name": "reports_sum_fields", "enumValues": null, "description": "aggregate sum on columns", "fields": [ @@ -31267,19 +37118,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "bigint", @@ -31292,17 +37131,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31315,9 +37144,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_sum_order_by", + "name": "reports_sum_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"related_data_sources\"", + "description": "order by sum() on columns of table \"reports\"", "fields": null }, { @@ -31325,22 +37154,34 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_update_column", + "name": "reports_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "reporter", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "validator", "description": "column name" } ], - "description": "update columns of table \"related_data_sources\"", + "description": "update columns of table \"reports\"", "fields": null }, { @@ -31348,7 +37189,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_var_pop_fields", + "name": "reports_var_pop_fields", "enumValues": null, "description": "aggregate var_pop on columns", "fields": [ @@ -31356,19 +37197,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31381,17 +37210,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31404,9 +37223,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_var_pop_order_by", + "name": "reports_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"related_data_sources\"", + "description": "order by var_pop() on columns of table \"reports\"", "fields": null }, { @@ -31414,7 +37233,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_var_samp_fields", + "name": "reports_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -31422,19 +37241,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31447,17 +37254,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31470,9 +37267,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_var_samp_order_by", + "name": "reports_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"related_data_sources\"", + "description": "order by var_samp() on columns of table \"reports\"", "fields": null }, { @@ -31480,7 +37277,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "related_data_sources_variance_fields", + "name": "reports_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -31488,19 +37285,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", @@ -31513,17 +37298,7 @@ { "inputFields": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -31536,9 +37311,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "related_data_sources_variance_order_by", + "name": "reports_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"related_data_sources\"", + "description": "order by variance() on columns of table \"reports\"", "fields": null }, { @@ -31546,47 +37321,31 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details", + "name": "requested_validators", "enumValues": null, - "description": "columns and relationships of \"report_details\"", + "description": "columns and relationships of \"requested_validators\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", + "name": "request", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "requests", "ofType": null } }, - "description": null + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "exitcode", + "name": "request_id", "type": { "kind": "NON_NULL", "name": null, @@ -31602,51 +37361,23 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "external_id", + "name": "validator", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "validators", "ofType": null } }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "report", - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", + "name": "validator_address", "type": { "kind": "NON_NULL", "name": null, @@ -31665,9 +37396,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_aggregate", + "name": "requested_validators_aggregate", "enumValues": null, - "description": "aggregated selection of \"report_details\"", + "description": "aggregated selection of \"requested_validators\"", "fields": [ { "args": [], @@ -31676,7 +37407,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "report_details_aggregate_fields", + "name": "requested_validators_aggregate_fields", "ofType": null }, "description": null @@ -31697,7 +37428,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details", + "name": "requested_validators", "ofType": null } } @@ -31712,9 +37443,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_aggregate_fields", + "name": "requested_validators_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"report_details\"", + "description": "aggregate fields of \"requested_validators\"", "fields": [ { "args": [], @@ -31723,7 +37454,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "report_details_avg_fields", + "name": "requested_validators_avg_fields", "ofType": null }, "description": null @@ -31741,7 +37472,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "report_details_select_column", + "name": "requested_validators_select_column", "ofType": null } } @@ -31776,7 +37507,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "report_details_max_fields", + "name": "requested_validators_max_fields", "ofType": null }, "description": null @@ -31788,7 +37519,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "report_details_min_fields", + "name": "requested_validators_min_fields", "ofType": null }, "description": null @@ -31800,7 +37531,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "report_details_stddev_fields", + "name": "requested_validators_stddev_fields", "ofType": null }, "description": null @@ -31812,7 +37543,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "report_details_stddev_pop_fields", + "name": "requested_validators_stddev_pop_fields", "ofType": null }, "description": null @@ -31824,7 +37555,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "report_details_stddev_samp_fields", + "name": "requested_validators_stddev_samp_fields", "ofType": null }, "description": null @@ -31836,7 +37567,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "report_details_sum_fields", + "name": "requested_validators_sum_fields", "ofType": null }, "description": null @@ -31848,7 +37579,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "report_details_var_pop_fields", + "name": "requested_validators_var_pop_fields", "ofType": null }, "description": null @@ -31860,7 +37591,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "report_details_var_samp_fields", + "name": "requested_validators_var_samp_fields", "ofType": null }, "description": null @@ -31872,7 +37603,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "report_details_variance_fields", + "name": "requested_validators_variance_fields", "ofType": null }, "description": null @@ -31886,7 +37617,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_avg_order_by", + "name": "requested_validators_avg_order_by", "ofType": null }, "description": null @@ -31906,7 +37637,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_max_order_by", + "name": "requested_validators_max_order_by", "ofType": null }, "description": null @@ -31916,7 +37647,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_min_order_by", + "name": "requested_validators_min_order_by", "ofType": null }, "description": null @@ -31926,7 +37657,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_stddev_order_by", + "name": "requested_validators_stddev_order_by", "ofType": null }, "description": null @@ -31936,7 +37667,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_stddev_pop_order_by", + "name": "requested_validators_stddev_pop_order_by", "ofType": null }, "description": null @@ -31946,7 +37677,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_stddev_samp_order_by", + "name": "requested_validators_stddev_samp_order_by", "ofType": null }, "description": null @@ -31956,7 +37687,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_sum_order_by", + "name": "requested_validators_sum_order_by", "ofType": null }, "description": null @@ -31966,7 +37697,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_var_pop_order_by", + "name": "requested_validators_var_pop_order_by", "ofType": null }, "description": null @@ -31976,7 +37707,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_var_samp_order_by", + "name": "requested_validators_var_samp_order_by", "ofType": null }, "description": null @@ -31986,7 +37717,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_variance_order_by", + "name": "requested_validators_variance_order_by", "ofType": null }, "description": null @@ -31995,9 +37726,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_aggregate_order_by", + "name": "requested_validators_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"report_details\"", + "description": "order by aggregate values of table \"requested_validators\"", "fields": null }, { @@ -32016,7 +37747,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_insert_input", + "name": "requested_validators_insert_input", "ofType": null } } @@ -32029,7 +37760,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_on_conflict", + "name": "requested_validators_on_conflict", "ofType": null }, "description": null @@ -32038,9 +37769,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_arr_rel_insert_input", + "name": "requested_validators_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"report_details\"", + "description": "input type for inserting array relation for remote table \"requested_validators\"", "fields": null }, { @@ -32048,46 +37779,10 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_avg_fields", + "name": "requested_validators_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -32104,36 +37799,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -32148,9 +37813,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_avg_order_by", + "name": "requested_validators_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"report_details\"", + "description": "order by avg() on columns of table \"requested_validators\"", "fields": null }, { @@ -32163,7 +37828,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null } }, @@ -32174,7 +37839,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": null @@ -32187,44 +37852,24 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null } }, "description": null }, { - "name": "data", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", + "name": "request", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "requests_bool_exp", "ofType": null }, "description": null }, { - "name": "external_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -32234,27 +37879,17 @@ "description": null }, { - "name": "report", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "request_id", + "name": "validator", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "validators_bool_exp", "ofType": null }, "description": null }, { - "name": "validator", + "name": "validator_address", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -32267,60 +37902,30 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_bool_exp", + "name": "requested_validators_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"report_details\". All fields are combined with a logical 'AND'.", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_constraint", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "report_details_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"report_details\"", + "description": "Boolean expression to filter rows from the table \"requested_validators\". All fields are combined with a logical 'AND'.", "fields": null }, - { - "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_constraint", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"requested_validators\"", + "fields": null + }, + { + "inputFields": [ { "name": "request_id", "defaultValue": null, @@ -32335,45 +37940,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_inc_input", + "name": "requested_validators_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"report_details\"", + "description": "input type for incrementing integer column in table \"requested_validators\"", "fields": null }, { "inputFields": [ { - "name": "data", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - }, - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", + "name": "request", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "requests_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "external_id", + "name": "request_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -32383,27 +37968,17 @@ "description": null }, { - "name": "report", + "name": "validator", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_obj_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", + "name": "validators_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "validator", + "name": "validator_address", "defaultValue": null, "type": { "kind": "SCALAR", @@ -32416,9 +37991,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_insert_input", + "name": "requested_validators_insert_input", "enumValues": null, - "description": "input type for inserting data into table \"report_details\"", + "description": "input type for inserting data into table \"requested_validators\"", "fields": null }, { @@ -32426,46 +38001,10 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_max_fields", + "name": "requested_validators_max_fields", "enumValues": null, "description": "aggregate max on columns", "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -32482,7 +38021,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator", + "name": "validator_address", "type": { "kind": "SCALAR", "name": "String", @@ -32494,36 +38033,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -32535,7 +38044,7 @@ "description": null }, { - "name": "validator", + "name": "validator_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -32548,9 +38057,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_max_order_by", + "name": "requested_validators_max_order_by", "enumValues": null, - "description": "order by max() on columns of table \"report_details\"", + "description": "order by max() on columns of table \"requested_validators\"", "fields": null }, { @@ -32558,46 +38067,10 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_min_fields", + "name": "requested_validators_min_fields", "enumValues": null, "description": "aggregate min on columns", "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -32614,7 +38087,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator", + "name": "validator_address", "type": { "kind": "SCALAR", "name": "String", @@ -32626,36 +38099,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -32667,7 +38110,7 @@ "description": null }, { - "name": "validator", + "name": "validator_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -32680,9 +38123,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_min_order_by", + "name": "requested_validators_min_order_by", "enumValues": null, - "description": "order by min() on columns of table \"report_details\"", + "description": "order by min() on columns of table \"requested_validators\"", "fields": null }, { @@ -32690,9 +38133,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_mutation_response", + "name": "requested_validators_mutation_response", "enumValues": null, - "description": "response of any mutation on the table \"report_details\"", + "description": "response of any mutation on the table \"requested_validators\"", "fields": [ { "args": [], @@ -32726,7 +38169,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details", + "name": "requested_validators", "ofType": null } } @@ -32746,7 +38189,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_insert_input", + "name": "requested_validators_insert_input", "ofType": null } }, @@ -32757,7 +38200,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_on_conflict", + "name": "requested_validators_on_conflict", "ofType": null }, "description": null @@ -32766,9 +38209,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_obj_rel_insert_input", + "name": "requested_validators_obj_rel_insert_input", "enumValues": null, - "description": "input type for inserting object relation for remote table \"report_details\"", + "description": "input type for inserting object relation for remote table \"requested_validators\"", "fields": null }, { @@ -32780,326 +38223,68 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "report_details_constraint", - "ofType": null - } - }, - "description": null - }, - { - "name": "update_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "report_details_update_column", - "ofType": null - } - } - } - }, - "description": null - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"report_details\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "report", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"report_details\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "data", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", - "description": "column name" - } - ], - "description": "select columns of table \"report_details\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - }, - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_set_input", - "enumValues": null, - "description": "input type for updating data in table \"report_details\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "report_details_stddev_fields", - "enumValues": null, - "description": "aggregate stddev on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "ENUM", + "name": "requested_validators_constraint", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", + "name": "update_columns", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requested_validators_update_column", + "ofType": null + } + } + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "where", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"requested_validators\"", + "fields": null }, { "inputFields": [ { - "name": "data_source_id", + "name": "request", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "requests_order_by", "ofType": null }, "description": null }, { - "name": "exitcode", + "name": "request_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -33109,17 +38294,17 @@ "description": null }, { - "name": "external_id", + "name": "validator", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "validators_order_by", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "validator_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -33132,102 +38317,129 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_stddev_order_by", + "name": "requested_validators_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"report_details\"", + "description": "ordering options when selecting data from \"requested_validators\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "report_details_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", + "name": "request_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", + "name": "validator_address", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"requested_validators\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_select_column", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null + "name": "request_id", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null + "name": "validator_address", + "description": "column name" } - ] + ], + "description": "select columns of table \"requested_validators\"", + "fields": null }, { "inputFields": [ { - "name": "data_source_id", + "name": "request_id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "exitcode", + "name": "validator_address", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_set_input", + "enumValues": null, + "description": "input type for updating data in table \"requested_validators\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "requested_validators_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ { - "name": "external_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_id", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { "name": "request_id", "defaultValue": null, @@ -33242,9 +38454,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_stddev_pop_order_by", + "name": "requested_validators_stddev_order_by", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"report_details\"", + "description": "order by stddev() on columns of table \"requested_validators\"", "fields": null }, { @@ -33252,46 +38464,54 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_stddev_samp_fields", + "name": "requested_validators_stddev_pop_fields", "enumValues": null, - "description": "aggregate stddev_samp on columns", + "description": "aggregate stddev_pop on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", + "name": "request_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"requested_validators\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "requested_validators_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ { "args": [], "isDeprecated": false, @@ -33308,36 +38528,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -33352,9 +38542,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_stddev_samp_order_by", + "name": "requested_validators_stddev_samp_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"report_details\"", + "description": "order by stddev_samp() on columns of table \"requested_validators\"", "fields": null }, { @@ -33362,46 +38552,10 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_sum_fields", + "name": "requested_validators_sum_fields", "enumValues": null, "description": "aggregate sum on columns", "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -33418,36 +38572,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -33462,9 +38586,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_sum_order_by", + "name": "requested_validators_sum_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"report_details\"", + "description": "order by sum() on columns of table \"requested_validators\"", "fields": null }, { @@ -33472,32 +38596,8 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "report_details_update_column", + "name": "requested_validators_update_column", "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "data", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "description": "column name" - }, { "isDeprecated": false, "deprecationReason": null, @@ -33507,11 +38607,11 @@ { "isDeprecated": false, "deprecationReason": null, - "name": "validator", + "name": "validator_address", "description": "column name" } ], - "description": "update columns of table \"report_details\"", + "description": "update columns of table \"requested_validators\"", "fields": null }, { @@ -33519,46 +38619,10 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_var_pop_fields", + "name": "requested_validators_var_pop_fields", "enumValues": null, "description": "aggregate var_pop on columns", "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -33575,36 +38639,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -33619,9 +38653,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_var_pop_order_by", + "name": "requested_validators_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"report_details\"", + "description": "order by var_pop() on columns of table \"requested_validators\"", "fields": null }, { @@ -33629,7 +38663,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_var_samp_fields", + "name": "requested_validators_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -33637,38 +38671,46 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "exitcode", + "name": "request_id", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "external_id", + "name": "request_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requested_validators_var_samp_order_by", + "enumValues": null, + "description": "order by var_samp() on columns of table \"requested_validators\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "requested_validators_variance_fields", + "enumValues": null, + "description": "aggregate variance on columns", + "fields": [ { "args": [], "isDeprecated": false, @@ -33685,36 +38727,6 @@ }, { "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "exitcode", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "request_id", "defaultValue": null, @@ -33729,9 +38741,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "report_details_var_samp_order_by", + "name": "requested_validators_variance_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"report_details\"", + "description": "order by variance() on columns of table \"requested_validators\"", "fields": null }, { @@ -33739,19 +38751,23 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "report_details_variance_fields", + "name": "requests", "enumValues": null, - "description": "aggregate variance on columns", + "description": "columns and relationships of \"requests\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_id", + "name": "calldata", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } }, "description": null }, @@ -33759,11 +38775,15 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "exitcode", + "name": "client_id", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null }, @@ -33771,11 +38791,15 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "external_id", + "name": "expiration_height", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, @@ -33783,76 +38807,224 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "data_source_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } }, - "description": null + "description": "An object relationship" }, { - "name": "exitcode", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "name": "external_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "raw_data_requests", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "request_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests_aggregate", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "raw_data_requests_aggregate", + "ofType": null + } }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_variance_order_by", - "enumValues": null, - "description": "order by variance() on columns of table \"report_details\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports", - "enumValues": null, - "description": "columns and relationships of \"reports\"", - "fields": [ + "description": "An aggregated array relationship" + }, { "args": [ { @@ -33866,7 +39038,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "report_details_select_column", + "name": "reports_select_column", "ofType": null } } @@ -33904,7 +39076,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_order_by", + "name": "reports_order_by", "ofType": null } } @@ -33916,7 +39088,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -33924,7 +39096,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "report_details", + "name": "reports", "type": { "kind": "NON_NULL", "name": null, @@ -33936,7 +39108,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details", + "name": "reports", "ofType": null } } @@ -33957,7 +39129,181 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "report_details_select_column", + "name": "reports_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "reports_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requested_validators_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requested_validators", + "ofType": null + } + } + } + }, + "description": "An array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requested_validators_select_column", "ofType": null } } @@ -33995,7 +39341,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_order_by", + "name": "requested_validators_order_by", "ofType": null } } @@ -34007,7 +39353,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -34015,13 +39361,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "report_details_aggregate", + "name": "requested_validators_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "report_details_aggregate", + "name": "requested_validators_aggregate", "ofType": null } }, @@ -34031,7 +39377,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reporter", + "name": "requester", "type": { "kind": "NON_NULL", "name": null, @@ -34047,29 +39393,13 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - }, - "description": "An object relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "resolve_status", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null } }, @@ -34079,29 +39409,25 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transaction", + "name": "result", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions", - "ofType": null - } + "kind": "SCALAR", + "name": "bytea", + "ofType": null }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "sufficient_validator_count", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null } }, @@ -34111,33 +39437,33 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator", + "name": "transaction", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "transactions", "ofType": null } }, - "description": null + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validatorByValidator", + "name": "tx_hash", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "validators", + "kind": "SCALAR", + "name": "bytea", "ofType": null } }, - "description": "An object relationship" + "description": null } ] }, @@ -34146,9 +39472,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "reports_aggregate", + "name": "requests_aggregate", "enumValues": null, - "description": "aggregated selection of \"reports\"", + "description": "aggregated selection of \"requests\"", "fields": [ { "args": [], @@ -34157,7 +39483,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "reports_aggregate_fields", + "name": "requests_aggregate_fields", "ofType": null }, "description": null @@ -34178,7 +39504,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "reports", + "name": "requests", "ofType": null } } @@ -34193,9 +39519,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "reports_aggregate_fields", + "name": "requests_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"reports\"", + "description": "aggregate fields of \"requests\"", "fields": [ { "args": [], @@ -34204,7 +39530,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "reports_avg_fields", + "name": "requests_avg_fields", "ofType": null }, "description": null @@ -34222,7 +39548,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "reports_select_column", + "name": "requests_select_column", "ofType": null } } @@ -34257,7 +39583,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "reports_max_fields", + "name": "requests_max_fields", "ofType": null }, "description": null @@ -34269,7 +39595,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "reports_min_fields", + "name": "requests_min_fields", "ofType": null }, "description": null @@ -34281,7 +39607,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "reports_stddev_fields", + "name": "requests_stddev_fields", "ofType": null }, "description": null @@ -34293,7 +39619,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "reports_stddev_pop_fields", + "name": "requests_stddev_pop_fields", "ofType": null }, "description": null @@ -34305,7 +39631,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "reports_stddev_samp_fields", + "name": "requests_stddev_samp_fields", "ofType": null }, "description": null @@ -34317,7 +39643,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "reports_sum_fields", + "name": "requests_sum_fields", "ofType": null }, "description": null @@ -34329,7 +39655,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "reports_var_pop_fields", + "name": "requests_var_pop_fields", "ofType": null }, "description": null @@ -34341,7 +39667,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "reports_var_samp_fields", + "name": "requests_var_samp_fields", "ofType": null }, "description": null @@ -34353,7 +39679,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "reports_variance_fields", + "name": "requests_variance_fields", "ofType": null }, "description": null @@ -34367,7 +39693,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_avg_order_by", + "name": "requests_avg_order_by", "ofType": null }, "description": null @@ -34387,7 +39713,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_max_order_by", + "name": "requests_max_order_by", "ofType": null }, "description": null @@ -34397,7 +39723,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_min_order_by", + "name": "requests_min_order_by", "ofType": null }, "description": null @@ -34407,7 +39733,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_stddev_order_by", + "name": "requests_stddev_order_by", "ofType": null }, "description": null @@ -34417,7 +39743,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_stddev_pop_order_by", + "name": "requests_stddev_pop_order_by", "ofType": null }, "description": null @@ -34427,7 +39753,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_stddev_samp_order_by", + "name": "requests_stddev_samp_order_by", "ofType": null }, "description": null @@ -34437,7 +39763,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_sum_order_by", + "name": "requests_sum_order_by", "ofType": null }, "description": null @@ -34447,7 +39773,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_var_pop_order_by", + "name": "requests_var_pop_order_by", "ofType": null }, "description": null @@ -34457,7 +39783,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_var_samp_order_by", + "name": "requests_var_samp_order_by", "ofType": null }, "description": null @@ -34467,7 +39793,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_variance_order_by", + "name": "requests_variance_order_by", "ofType": null }, "description": null @@ -34476,9 +39802,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_aggregate_order_by", + "name": "requests_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"reports\"", + "description": "order by aggregate values of table \"requests\"", "fields": null }, { @@ -34497,7 +39823,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_insert_input", + "name": "requests_insert_input", "ofType": null } } @@ -34510,7 +39836,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", + "name": "requests_on_conflict", "ofType": null }, "description": null @@ -34519,9 +39845,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_arr_rel_insert_input", + "name": "requests_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"reports\"", + "description": "input type for inserting array relation for remote table \"requests\"", "fields": null }, { @@ -34529,7 +39855,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "reports_avg_fields", + "name": "requests_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ @@ -34537,7 +39863,43 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", "name": "Float", @@ -34550,7 +39912,37 @@ { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -34563,9 +39955,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_avg_order_by", + "name": "requests_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"reports\"", + "description": "order by avg() on columns of table \"requests\"", "fields": null }, { @@ -34574,92 +39966,152 @@ "name": "_and", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "_not", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "_or", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "calldata", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "client_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "expiration_height", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null }, "description": null }, { - "name": "_not", + "name": "oracle_script", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null }, { - "name": "_or", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null }, "description": null }, { - "name": "report_details", + "name": "raw_data_requests", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "raw_data_requests_bool_exp", "ofType": null }, "description": null }, { - "name": "reporter", + "name": "reports", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "reports_bool_exp", "ofType": null }, "description": null }, { - "name": "request", + "name": "requested_validators", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "requester", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "transaction", + "name": "resolve_status", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "result", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -34669,21 +40121,31 @@ "description": null }, { - "name": "validator", + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "validatorByValidator", + "name": "transaction", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", "ofType": null }, "description": null @@ -34692,9 +40154,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_bool_exp", + "name": "requests_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"reports\". All fields are combined with a logical 'AND'.", + "description": "Boolean expression to filter rows from the table \"requests\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -34702,22 +40164,52 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "reports_constraint", + "name": "requests_constraint", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "reports_pkey", + "name": "requests_pkey", "description": "unique or primary key constraint" } ], - "description": "unique or primary key constraints on table \"reports\"", + "description": "unique or primary key constraints on table \"requests\"", "fields": null }, { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "SCALAR", @@ -34730,25 +40222,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_inc_input", + "name": "requests_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"reports\"", + "description": "input type for incrementing integer column in table \"requests\"", "fields": null }, { "inputFields": [ { - "name": "report_details", + "name": "calldata", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_arr_rel_insert_input", + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null }, { - "name": "reporter", + "name": "client_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -34758,17 +40250,17 @@ "description": null }, { - "name": "request", + "name": "expiration_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_obj_rel_insert_input", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -34778,68 +40270,58 @@ "description": null }, { - "name": "transaction", + "name": "oracle_script", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_obj_rel_insert_input", + "name": "oracle_scripts_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "validator", + "name": "raw_data_requests", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "validatorByValidator", + "name": "reports", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_obj_rel_insert_input", + "name": "reports_arr_rel_insert_input", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_insert_input", - "enumValues": null, - "description": "input type for inserting data into table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_max_fields", - "enumValues": null, - "description": "aggregate max on columns", - "fields": [ + }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "reporter", + "name": "requested_validators", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_arr_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "requester", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "String", @@ -34848,59 +40330,51 @@ "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "resolve_status", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", + "name": "result", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "reporter", + "name": "sufficient_validator_count", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "transaction", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "validator", + "name": "tx_hash", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null @@ -34909,9 +40383,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_max_order_by", + "name": "requests_insert_input", "enumValues": null, - "description": "order by max() on columns of table \"reports\"", + "description": "input type for inserting data into table \"requests\"", "fields": null }, { @@ -34919,15 +40393,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "reports_min_fields", + "name": "requests_max_fields", "enumValues": null, - "description": "aggregate min on columns", + "description": "aggregate max on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reporter", + "name": "client_id", "type": { "kind": "SCALAR", "name": "String", @@ -34939,7 +40413,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", "type": { "kind": "SCALAR", "name": "bigint", @@ -34951,254 +40425,68 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "reporter", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "request_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_min_order_by", - "enumValues": null, - "description": "order by min() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_mutation_response", - "enumValues": null, - "description": "response of any mutation on the table \"reports\"", - "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "requester", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - }, - "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, + "name": "resolve_status", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"reports\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "constraint", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_constraint", - "ofType": null - } - }, - "description": null - }, - { - "name": "update_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_update_column", - "ofType": null - } - } - } - }, - "description": null }, { - "name": "where", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"reports\"", - "fields": null + ] }, { "inputFields": [ { - "name": "report_details_aggregate", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_aggregate_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "reporter", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "transaction", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "tx_hash", + "name": "client_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -35208,107 +40496,61 @@ "description": null }, { - "name": "validator", + "name": "expiration_height", "defaultValue": null, "type": { "kind": "ENUM", "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "validatorByValidator", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "reports_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "reporter", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "description": "column name" + "ofType": null + }, + "description": null }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", - "description": "column name" - } - ], - "description": "select columns of table \"reports\"", - "fields": null - }, - { - "inputFields": [ + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { - "name": "reporter", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "requester", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "resolve_status", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bytea", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "validator", + "name": "sufficient_validator_count", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -35317,9 +40559,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_set_input", + "name": "requests_max_order_by", "enumValues": null, - "description": "input type for updating data in table \"reports\"", + "description": "order by max() on columns of table \"requests\"", "fields": null }, { @@ -35327,147 +40569,87 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "reports_stddev_fields", + "name": "requests_min_fields", "enumValues": null, - "description": "aggregate stddev on columns", + "description": "aggregate min on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "client_id", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "expiration_height", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_stddev_order_by", - "enumValues": null, - "description": "order by stddev() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "id", "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "requester", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_status", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_stddev_samp_order_by", - "enumValues": null, - "description": "order by stddev_samp() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_sum_fields", - "enumValues": null, - "description": "aggregate sum on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", "name": "bigint", @@ -35480,7 +40662,7 @@ { "inputFields": [ { - "name": "request_id", + "name": "client_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -35488,78 +40670,19 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_sum_order_by", - "enumValues": null, - "description": "order by sum() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "reports_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "reporter", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "description": "column name" }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", - "description": "column name" - } - ], - "description": "update columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_var_pop_fields", - "enumValues": null, - "description": "aggregate var_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -35567,43 +40690,19 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_var_pop_order_by", - "enumValues": null, - "description": "order by var_pop() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_var_samp_fields", - "enumValues": null, - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "oracle_script_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "requester", "defaultValue": null, "type": { "kind": "ENUM", @@ -35611,43 +40710,19 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_var_samp_order_by", - "enumValues": null, - "description": "order by var_samp() on columns of table \"reports\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "reports_variance_fields", - "enumValues": null, - "description": "aggregate variance on columns", - "fields": [ + }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "resolve_status", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -35660,9 +40735,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "reports_variance_order_by", + "name": "requests_min_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"reports\"", + "description": "order by min() on columns of table \"requests\"", "fields": null }, { @@ -35670,102 +40745,31 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators", + "name": "requests_mutation_response", "enumValues": null, - "description": "columns and relationships of \"requested_validators\"", + "description": "response of any mutation on the table \"requests\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - }, - "description": "An object relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "validator", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validators", - "ofType": null - } - }, - "description": "An object relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "validator_address", + "name": "affected_rows", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_aggregate", - "enumValues": null, - "description": "aggregated selection of \"requested_validators\"", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "requested_validators_aggregate_fields", - "ofType": null - }, - "description": null + "description": "number of affected rows by the mutation" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "nodes", + "name": "returning", "type": { "kind": "NON_NULL", "name": null, @@ -35777,202 +40781,162 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "requested_validators", + "name": "requests", "ofType": null } } } }, - "description": null + "description": "data of the affected rows by the mutation" } ] }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_aggregate_fields", - "enumValues": null, - "description": "aggregate fields of \"requested_validators\"", - "fields": [ + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "avg", + "name": "data", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_avg_fields", - "ofType": null - }, - "description": null - }, - { - "args": [ - { - "name": "columns", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_select_column", - "ofType": null - } - } - }, - "description": null - }, - { - "name": "distinct", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_insert_input", + "ofType": null } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "requested_validators_max_fields", - "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min", + "name": "on_conflict", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_min_fields", + "kind": "INPUT_OBJECT", + "name": "requests_on_conflict", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requests_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"requests\"", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev", + "name": "constraint", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_stddev_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_constraint", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_pop", + "name": "update_columns", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_stddev_pop_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_update_column", + "ofType": null + } + } + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_samp", + "name": "where", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_stddev_samp_fields", + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "requests_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"requests\"", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sum", + "name": "calldata", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_sum_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "var_pop", + "name": "client_id", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_var_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "var_samp", + "name": "expiration_height", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_var_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "variance", + "name": "id", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_variance_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "avg", + "name": "oracle_script", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_avg_order_by", + "name": "oracle_scripts_order_by", "ofType": null }, "description": null }, { - "name": "count", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -35982,91 +40946,91 @@ "description": null }, { - "name": "max", + "name": "raw_data_requests_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_max_order_by", + "name": "raw_data_requests_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "min", + "name": "reports_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_min_order_by", + "name": "reports_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "stddev", + "name": "requested_validators_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_stddev_order_by", + "name": "requested_validators_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "stddev_pop", + "name": "requester", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_stddev_pop_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "stddev_samp", + "name": "resolve_status", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_stddev_samp_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "sum", + "name": "result", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_sum_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "var_pop", + "name": "sufficient_validator_count", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_var_pop_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "var_samp", + "name": "transaction", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_var_samp_order_by", + "name": "transactions_order_by", "ofType": null }, "description": null }, { - "name": "variance", + "name": "tx_hash", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_variance_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -36075,174 +41039,205 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_aggregate_order_by", + "name": "requests_order_by", "enumValues": null, - "description": "order by aggregate values of table \"requested_validators\"", + "description": "ordering options when selecting data from \"requests\"", "fields": null }, { "inputFields": [ { - "name": "data", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_on_conflict", - "ofType": null - }, - "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_arr_rel_insert_input", + "name": "requests_pk_columns_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"requested_validators\"", + "description": "primary key columns input for table: \"requests\"", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_avg_fields", - "enumValues": null, - "description": "aggregate avg on columns", - "fields": [ + "interfaces": null, + "name": "requests_select_column", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "calldata", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "client_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "expiration_height", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "requester", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_status", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "result", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + } + ], + "description": "select columns of table \"requests\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "calldata", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bytea", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "client_id", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_avg_order_by", - "enumValues": null, - "description": "order by avg() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "_and", + "name": "expiration_height", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "_not", + "name": "id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "_or", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "request", + "name": "requester", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "resolve_status", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "validator", + "name": "result", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null }, { - "name": "validator_address", + "name": "sufficient_validator_count", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", "ofType": null }, "description": null @@ -36251,36 +41246,108 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_bool_exp", + "name": "requests_set_input", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"requested_validators\". All fields are combined with a logical 'AND'.", + "description": "input type for updating data in table \"requests\"", "fields": null }, { "inputFields": null, - "kind": "ENUM", + "kind": "OBJECT", "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_constraint", - "enumValues": [ + "interfaces": [], + "name": "requests_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_pkey", - "description": "unique or primary key constraint" + "name": "expiration_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null } - ], - "description": "unique or primary key constraints on table \"requested_validators\"", - "fields": null + ] }, { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -36289,49 +41356,108 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_inc_input", + "name": "requests_stddev_order_by", "enumValues": null, - "description": "input type for incrementing integer columne in table \"requested_validators\"", + "description": "order by stddev() on columns of table \"requests\"", "fields": null }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "requests_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "expiration_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, { "inputFields": [ { - "name": "request", + "name": "expiration_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_obj_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "validator", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "validators_obj_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "validator_address", + "name": "sufficient_validator_count", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -36340,9 +41466,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_insert_input", + "name": "requests_stddev_pop_order_by", "enumValues": null, - "description": "input type for inserting data into table \"requested_validators\"", + "description": "order by stddev_pop() on columns of table \"requests\"", "fields": null }, { @@ -36350,18 +41476,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators_max_fields", + "name": "requests_stddev_samp_fields", "enumValues": null, - "description": "aggregate max on columns", + "description": "aggregate stddev_samp on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -36370,64 +41496,22 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_address", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "name": "Float", "ofType": null }, "description": null }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_max_order_by", - "enumValues": null, - "description": "order by max() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_min_fields", - "enumValues": null, - "description": "aggregate min on columns", - "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "oracle_script_id", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -36436,10 +41520,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_address", + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -36449,7 +41533,7 @@ { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -36459,7 +41543,27 @@ "description": null }, { - "name": "validator_address", + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -36472,9 +41576,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_min_order_by", + "name": "requests_stddev_samp_order_by", "enumValues": null, - "description": "order by min() on columns of table \"requested_validators\"", + "description": "order by stddev_samp() on columns of table \"requests\"", "fields": null }, { @@ -36482,158 +41586,74 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators_mutation_response", + "name": "requests_sum_fields", "enumValues": null, - "description": "response of any mutation on the table \"requested_validators\"", + "description": "aggregate sum on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "expiration_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requested_validators", - "ofType": null - } - } - } - }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_insert_input", - "ofType": null - } - }, - "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_on_conflict", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"requested_validators\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "constraint", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_constraint", - "ofType": null - } - }, - "description": null }, { - "name": "update_columns", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "where", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"requested_validators\"", - "fields": null + ] }, { "inputFields": [ { - "name": "request", + "name": "expiration_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "request_id", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -36643,17 +41663,17 @@ "description": null }, { - "name": "validator", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "validator_address", + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -36666,9 +41686,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_order_by", + "name": "requests_sum_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"requested_validators\"", + "description": "order by sum() on columns of table \"requests\"", "fields": null }, { @@ -36676,53 +41696,70 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_select_column", + "name": "requests_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "calldata", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "validator_address", + "name": "client_id", "description": "column name" - } - ], - "description": "select columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "expiration_height", + "description": "column name" }, { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "requester", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_status", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "result", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" } ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_set_input", - "enumValues": null, - "description": "input type for updating data in table \"requested_validators\"", + "description": "update columns of table \"requests\"", "fields": null }, { @@ -36730,103 +41767,51 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators_stddev_fields", + "name": "requests_var_pop_fields", "enumValues": null, - "description": "aggregate stddev on columns", + "description": "aggregate var_pop on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_stddev_order_by", - "enumValues": null, - "description": "order by stddev() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", "name": "Float", @@ -36839,7 +41824,7 @@ { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -36847,43 +41832,9 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_stddev_samp_order_by", - "enumValues": null, - "description": "order by stddev_samp() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_sum_fields", - "enumValues": null, - "description": "aggregate sum on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -36891,66 +41842,19 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_sum_order_by", - "enumValues": null, - "description": "order by sum() on columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", - "description": "column name" }, { - "isDeprecated": false, - "deprecationReason": null, - "name": "validator_address", - "description": "column name" - } - ], - "description": "update columns of table \"requested_validators\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requested_validators_var_pop_fields", - "enumValues": null, - "description": "aggregate var_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_id", + "name": "oracle_script_id", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "request_id", + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -36963,9 +41867,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_var_pop_order_by", + "name": "requests_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"requested_validators\"", + "description": "order by var_pop() on columns of table \"requests\"", "fields": null }, { @@ -36973,7 +41877,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators_var_samp_fields", + "name": "requests_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -36981,7 +41885,43 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", "name": "Float", @@ -36994,7 +41934,37 @@ { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -37007,9 +41977,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_var_samp_order_by", + "name": "requests_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"requested_validators\"", + "description": "order by var_samp() on columns of table \"requests\"", "fields": null }, { @@ -37017,7 +41987,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requested_validators_variance_fields", + "name": "requests_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -37025,7 +41995,43 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_id", + "name": "expiration_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sufficient_validator_count", "type": { "kind": "SCALAR", "name": "Float", @@ -37038,7 +42044,37 @@ { "inputFields": [ { - "name": "request_id", + "name": "expiration_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sufficient_validator_count", "defaultValue": null, "type": { "kind": "ENUM", @@ -37051,9 +42087,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requested_validators_variance_order_by", + "name": "requests_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"requested_validators\"", + "description": "order by variance() on columns of table \"requests\"", "fields": null }, { @@ -37061,121 +42097,827 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requests", + "name": "subscription_root", "enumValues": null, - "description": "columns and relationships of \"requests\"", + "description": "subscription root", "fields": [ { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "accounts", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + } + } + } + }, + "description": "fetch data from the table: \"accounts\"" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "accounts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "accounts_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "accounts_aggregate", + "ofType": null + } + }, + "description": "fetch aggregated fields from the table: \"accounts\"" + }, + { + "args": [ + { + "name": "address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "accounts_by_pk", + "type": { + "kind": "OBJECT", + "name": "accounts", + "ofType": null + }, + "description": "fetch data from the table: \"accounts\" using primary key columns" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "blocks_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "blocks", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "blocks", + "ofType": null + } + } + } + }, + "description": "fetch data from the table: \"blocks\"" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "blocks_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "calldata", + "name": "blocks_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bytea", + "kind": "OBJECT", + "name": "blocks_aggregate", "ofType": null } }, - "description": null + "description": "fetch aggregated fields from the table: \"blocks\"" }, { - "args": [], + "args": [ + { + "name": "height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "client_id", + "name": "blocks_by_pk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "blocks", + "ofType": null }, - "description": null + "description": "fetch data from the table: \"blocks\" using primary key columns" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", + "name": "data_source_revisions", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_source_revisions", + "ofType": null + } + } } }, - "description": null + "description": "fetch data from the table: \"data_source_revisions\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "data_source_revisions_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "data_source_revisions_aggregate", "ofType": null } }, - "description": null + "description": "fetch aggregated fields from the table: \"data_source_revisions\"" }, { - "args": [], + "args": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "data_source_revisions_by_pk", + "type": { + "kind": "OBJECT", + "name": "data_source_revisions", + "ofType": null + }, + "description": "fetch data from the table: \"data_source_revisions\" using primary key columns" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "data_sources", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_sources", + "ofType": null + } + } } }, - "description": null + "description": "fetch data from the table: \"data_sources\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script", + "name": "data_sources_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "data_sources_aggregate", "ofType": null } }, - "description": "An object relationship" + "description": "fetch aggregated fields from the table: \"data_sources\"" }, { - "args": [], + "args": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "data_sources_by_pk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "OBJECT", + "name": "data_sources", + "ofType": null }, - "description": null + "description": "fetch data from the table: \"data_sources\" using primary key columns" }, { "args": [ @@ -37190,7 +42932,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_select_column", + "name": "delegations_select_column", "ofType": null } } @@ -37228,7 +42970,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", + "name": "delegations_order_by", "ofType": null } } @@ -37240,7 +42982,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37248,7 +42990,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests", + "name": "delegations", "type": { "kind": "NON_NULL", "name": null, @@ -37260,13 +43002,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "delegations", "ofType": null } } } }, - "description": "An array relationship" + "description": "fetch data from the table: \"delegations\"" }, { "args": [ @@ -37281,7 +43023,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "raw_data_requests_select_column", + "name": "delegations_select_column", "ofType": null } } @@ -37319,7 +43061,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", + "name": "delegations_order_by", "ofType": null } } @@ -37331,7 +43073,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37339,17 +43081,58 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_aggregate", + "name": "delegations_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "raw_data_requests_aggregate", + "name": "delegations_aggregate", "ofType": null } }, - "description": "An aggregated array relationship" + "description": "fetch aggregated fields from the table: \"delegations\"" + }, + { + "args": [ + { + "name": "delegator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations_by_pk", + "type": { + "kind": "OBJECT", + "name": "delegations", + "ofType": null + }, + "description": "fetch data from the table: \"delegations\" using primary key columns" }, { "args": [ @@ -37364,7 +43147,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "reports_select_column", + "name": "delegations_view_select_column", "ofType": null } } @@ -37402,7 +43185,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_order_by", + "name": "delegations_view_order_by", "ofType": null } } @@ -37414,7 +43197,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "delegations_view_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37422,7 +43205,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "reports", + "name": "delegations_view", "type": { "kind": "NON_NULL", "name": null, @@ -37434,13 +43217,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "reports", + "name": "delegations_view", "ofType": null } } } }, - "description": "An array relationship" + "description": "fetch data from the table: \"delegations_view\"" }, { "args": [ @@ -37455,7 +43238,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "reports_select_column", + "name": "delegations_view_select_column", "ofType": null } } @@ -37493,7 +43276,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_order_by", + "name": "delegations_view_order_by", "ofType": null } } @@ -37505,7 +43288,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "delegations_view_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37513,29 +43296,17 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "reports_aggregate", + "name": "delegations_view_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "reports_aggregate", + "name": "delegations_view_aggregate", "ofType": null } }, - "description": "An aggregated array relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "description": "fetch aggregated fields from the table: \"delegations_view\"" }, { "args": [ @@ -37550,7 +43321,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requested_validators_select_column", + "name": "metadata_select_column", "ofType": null } } @@ -37588,7 +43359,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", + "name": "metadata_order_by", "ofType": null } } @@ -37600,7 +43371,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "metadata_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37608,7 +43379,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators", + "name": "metadata", "type": { "kind": "NON_NULL", "name": null, @@ -37620,13 +43391,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "requested_validators", + "name": "metadata", "ofType": null } } } }, - "description": "An array relationship" + "description": "fetch data from the table: \"metadata\"" }, { "args": [ @@ -37641,7 +43412,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requested_validators_select_column", + "name": "metadata_select_column", "ofType": null } } @@ -37679,7 +43450,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", + "name": "metadata_order_by", "ofType": null } } @@ -37691,7 +43462,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "metadata_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -37699,180 +43470,49 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requested_validators_aggregate", - "ofType": null - } - }, - "description": "An aggregated array relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "requester", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_status", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "result", - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "transaction", + "name": "metadata_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "transactions", - "ofType": null - } - }, - "description": "An object relationship" - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", + "name": "metadata_aggregate", "ofType": null } }, - "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_aggregate", - "enumValues": null, - "description": "aggregated selection of \"requests\"", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "requests_aggregate_fields", - "ofType": null - }, - "description": null + "description": "fetch aggregated fields from the table: \"metadata\"" }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "name": "key", + "defaultValue": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "requests", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "description": null } - }, - "description": null - } - ] - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_aggregate_fields", - "enumValues": null, - "description": "aggregate fields of \"requests\"", - "fields": [ - { - "args": [], + ], "isDeprecated": false, "deprecationReason": null, - "name": "avg", + "name": "metadata_by_pk", "type": { "kind": "OBJECT", - "name": "requests_avg_fields", + "name": "metadata", "ofType": null }, - "description": null + "description": "fetch data from the table: \"metadata\" using primary key columns" }, { "args": [ { - "name": "columns", + "name": "distinct_on", "defaultValue": null, "type": { "kind": "LIST", @@ -37882,270 +43522,65 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requests_select_column", + "name": "oracle_script_codes_select_column", "ofType": null } } }, - "description": null + "description": "distinct select on columns" }, { - "name": "distinct", + "name": "limit", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "requests_max_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "requests_min_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "requests_stddev_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "requests_stddev_pop_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "requests_stddev_samp_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "requests_sum_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "requests_var_pop_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "requests_var_samp_fields", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "requests_variance_fields", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "avg", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_avg_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "max", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_max_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_min_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "stddev", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_stddev_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "stddev_pop", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_stddev_pop_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "stddev_samp", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_stddev_samp_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "sum", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_sum_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "var_pop", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_var_pop_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "var_samp", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_var_samp_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "variance", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_variance_order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_aggregate_order_by", - "enumValues": null, - "description": "order by aggregate values of table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_codes", "type": { "kind": "NON_NULL", "name": null, @@ -38156,1671 +43591,4089 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_insert_input", + "kind": "OBJECT", + "name": "oracle_script_codes", "ofType": null } } } }, - "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_on_conflict", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_arr_rel_insert_input", - "enumValues": null, - "description": "input type for inserting array relation for remote table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_avg_fields", - "enumValues": null, - "description": "aggregate avg on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null + "description": "fetch data from the table: \"oracle_script_codes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_codes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_codes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_avg_order_by", - "enumValues": null, - "description": "order by avg() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "_and", - "defaultValue": null, + "name": "oracle_script_codes_aggregate", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "kind": "OBJECT", + "name": "oracle_script_codes_aggregate", "ofType": null } }, - "description": null + "description": "fetch aggregated fields from the table: \"oracle_script_codes\"" }, { - "name": "_not", - "defaultValue": null, + "args": [ + { + "name": "code_hash", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_codes_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "kind": "OBJECT", + "name": "oracle_script_codes", "ofType": null }, - "description": null + "description": "fetch data from the table: \"oracle_script_codes\" using primary key columns" }, { - "name": "_or", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - } - }, - "description": null - }, - { - "name": "calldata", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "client_id", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "raw_data_requests", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "reports", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "request_time", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "requested_validators", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "requester", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_status", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "result", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"oracle_script_revisions\"" }, { - "name": "transaction", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions_aggregate", "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" }, { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_bool_exp", - "enumValues": null, - "description": "Boolean expression to filter rows from the table \"requests\". All fields are combined with a logical 'AND'.", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "requests_constraint", - "enumValues": [ - { + "args": [ + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "requests_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "expiration_height", - "defaultValue": null, + "name": "oracle_script_revisions_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_script_revisions", "ofType": null }, - "description": null + "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" }, { - "name": "id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_scripts", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"oracle_scripts\"" }, { - "name": "min_count", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_scripts_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_scripts_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"oracle_scripts\"" }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_scripts_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_scripts", "ofType": null }, - "description": null + "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" }, { - "name": "request_time", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "raw_data_requests", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"raw_data_requests\"" }, { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_inc_input", - "enumValues": null, - "description": "input type for incrementing integer columne in table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "calldata", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "raw_data_requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests_aggregate", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "raw_data_requests_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"raw_data_requests\"" }, { - "name": "client_id", - "defaultValue": null, + "args": [ + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_data_requests_by_pk", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "raw_data_requests", "ofType": null }, - "description": null + "description": "fetch data from the table: \"raw_data_requests\" using primary key columns" }, { - "name": "expiration_height", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"related_data_sources\"" }, { - "name": "id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"related_data_sources\"" }, { - "name": "min_count", - "defaultValue": null, + "args": [ + { + "name": "data_source_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "related_data_sources_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "related_data_sources", "ofType": null }, - "description": null + "description": "fetch data from the table: \"related_data_sources\" using primary key columns" }, { - "name": "oracle_script", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "report_details_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "report_details", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"report_details\"" }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "report_details_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "report_details_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"report_details\"" }, { - "name": "raw_data_requests", - "defaultValue": null, + "args": [ + { + "name": "external_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "report_details_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_arr_rel_insert_input", + "kind": "OBJECT", + "name": "report_details", "ofType": null }, - "description": null + "description": "fetch data from the table: \"report_details\" using primary key columns" }, { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, "name": "reports", - "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"reports\"" }, { - "name": "request_time", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "reports_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"reports\"" }, { - "name": "requested_validators", - "defaultValue": null, + "args": [ + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "reports_by_pk", "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_arr_rel_insert_input", + "kind": "OBJECT", + "name": "reports", "ofType": null }, - "description": null + "description": "fetch data from the table: \"reports\" using primary key columns" }, { - "name": "requester", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requested_validators_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requested_validators", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"requested_validators\"" }, { - "name": "resolve_status", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requested_validators_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requested_validators_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"requested_validators\"" }, { - "name": "resolve_time", - "defaultValue": null, + "args": [ + { + "name": "request_id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requested_validators_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "requested_validators", "ofType": null }, - "description": null + "description": "fetch data from the table: \"requested_validators\" using primary key columns" }, { - "name": "result", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requests", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"requests\"" }, { - "name": "transaction", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requests_aggregate", "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"requests\"" }, { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_insert_input", - "enumValues": null, - "description": "input type for inserting data into table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_max_fields", - "enumValues": null, - "description": "aggregate max on columns", - "fields": [ - { - "args": [], + "args": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "client_id", + "name": "requests_by_pk", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "requests", "ofType": null }, - "description": null + "description": "fetch data from the table: \"requests\" using primary key columns" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "transactions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", + "name": "transactions", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "transactions", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"transactions\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "transactions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "transactions_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "transactions_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"transactions\"" }, { - "args": [], + "args": [ + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "transactions_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "transactions", "ofType": null }, - "description": null + "description": "fetch data from the table: \"transactions\" using primary key columns" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "unbonding_delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "unbonding_delegations", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "unbonding_delegations", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"unbonding_delegations\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "unbonding_delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", + "name": "unbonding_delegations_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "unbonding_delegations_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"unbonding_delegations\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_10000_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "requester", + "name": "validator_last_10000_votes", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_10000_votes", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"validator_last_10000_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_10000_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_status", + "name": "validator_last_10000_votes_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_10000_votes_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"validator_last_10000_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_1000_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "client_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "requester", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_status", - "defaultValue": null, + "name": "validator_last_1000_votes", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_1000_votes", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"validator_last_1000_votes\"" }, { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_max_order_by", - "enumValues": null, - "description": "order by max() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_min_fields", - "enumValues": null, - "description": "aggregate min on columns", - "fields": [ - { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_1000_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_1000_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "client_id", + "name": "validator_last_1000_votes_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_1000_votes_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"validator_last_1000_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_250_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", + "name": "validator_last_250_votes", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_250_votes", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"validator_last_250_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_250_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_250_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "validator_last_250_votes_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_250_votes_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"validator_last_250_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "validator_votes", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_votes", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"validator_votes\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_votes_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "validator_votes_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_votes_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"validator_votes\"" }, { - "args": [], + "args": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "consensus_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", + "name": "validator_votes_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "validator_votes", "ofType": null }, - "description": null + "description": "fetch data from the table: \"validator_votes\" using primary key columns" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validators_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "requester", + "name": "validators", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validators", + "ofType": null + } + } + } }, - "description": null + "description": "fetch data from the table: \"validators\"" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validators_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validators_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validators_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_status", + "name": "validators_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validators_aggregate", + "ofType": null + } }, - "description": null + "description": "fetch aggregated fields from the table: \"validators\"" }, { - "args": [], + "args": [ + { + "name": "operator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", + "name": "validators_by_pk", "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "validators", "ofType": null }, - "description": null + "description": "fetch data from the table: \"validators\" using primary key columns" } ] }, - { - "inputFields": [ - { - "name": "client_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "requester", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_status", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_min_order_by", - "enumValues": null, - "description": "order by min() on columns of table \"requests\"", - "fields": null - }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requests_mutation_response", + "name": "transactions", "enumValues": null, - "description": "response of any mutation on the table \"requests\"", + "description": "columns and relationships of \"transactions\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "account", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "accounts", "ofType": null } }, - "description": "number of affected rows by the mutation" + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - } - } - }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, + "name": "block", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_insert_input", + "kind": "OBJECT", + "name": "blocks", "ofType": null } }, - "description": null + "description": "An object relationship" }, { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_on_conflict", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "constraint", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "requests_constraint", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, "description": null }, { - "name": "update_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "requests_update_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } } - } - } - }, - "description": null - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "calldata", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "client_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "raw_data_requests_aggregate", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_aggregate_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "reports_aggregate", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "request_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "requested_validators_aggregate", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_aggregate_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "requester", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_status", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "result", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "transaction", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - }, - "description": null - }, - { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "requests_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "calldata", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "client_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", - "description": "column name" - }, - { + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", - "description": "column name" + "name": "data_source_revisions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_source_revisions", + "ofType": null + } + } + } + }, + "description": "An array relationship" }, { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "data_source_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", - "description": "column name" + "name": "data_source_revisions_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_source_revisions_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requester", - "description": "column name" + "name": "gas_fee", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_status", - "description": "column name" + "name": "gas_limit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", - "description": "column name" + "name": "gas_used", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "result", - "description": "column name" + "name": "index", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null }, { + "args": [ + { + "name": "path", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": "JSON select path" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", - "description": "column name" - } - ], - "description": "select columns of table \"requests\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "calldata", - "defaultValue": null, + "name": "messages", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, "description": null }, { - "name": "client_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "expiration_height", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_revisions_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "id", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_log", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null }, { - "name": "min_count", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "reports", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "oracle_script_id", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "reports_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "reports_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "reports_aggregate", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "reports_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "request_time", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requests", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests", + "ofType": null + } + } + } }, - "description": null + "description": "An array relationship" }, { - "name": "requester", - "defaultValue": null, + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "requests_aggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests_aggregate", + "ofType": null + } }, - "description": null + "description": "An aggregated array relationship" }, { - "name": "resolve_status", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sender", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null }, { - "name": "resolve_time", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "success", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "description": null }, { - "name": "result", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { + "args": [], + "isDeprecated": false, + "deprecationReason": null, "name": "tx_hash", - "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_set_input", - "enumValues": null, - "description": "input type for updating data in table \"requests\"", - "fields": null + ] }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requests_stddev_fields", + "name": "transactions_aggregate", "enumValues": null, - "description": "aggregate stddev on columns", + "description": "aggregated selection of \"transactions\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_aggregate_fields", "ofType": null }, "description": null @@ -39829,34 +47682,86 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "transactions", + "ofType": null + } + } + } }, "description": null - }, + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"transactions\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "avg", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_avg_fields", "ofType": null }, "description": null }, { - "args": [], + "args": [ + { + "name": "columns", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "transactions_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "description": null @@ -39865,10 +47770,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", + "name": "max", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_max_fields", "ofType": null }, "description": null @@ -39877,104 +47782,34 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, + "name": "min", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "transactions_min_fields", "ofType": null }, "description": null }, { - "name": "request_time", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "transactions_stddev_fields", "ofType": null }, "description": null }, - { - "name": "resolve_time", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_stddev_order_by", - "enumValues": null, - "description": "order by stddev() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_stddev_pop_fields", - "enumValues": null, - "description": "aggregate stddev_pop on columns", - "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", + "name": "stddev_pop", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_stddev_pop_fields", "ofType": null }, "description": null @@ -39983,10 +47818,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "stddev_samp", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_stddev_samp_fields", "ofType": null }, "description": null @@ -39995,10 +47830,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_sum_fields", "ofType": null }, "description": null @@ -40007,10 +47842,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "var_pop", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_var_pop_fields", "ofType": null }, "description": null @@ -40019,10 +47854,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", + "name": "var_samp", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_var_samp_fields", "ofType": null }, "description": null @@ -40031,10 +47866,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", + "name": "variance", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "transactions_variance_fields", "ofType": null }, "description": null @@ -40044,17 +47879,17 @@ { "inputFields": [ { - "name": "expiration_height", + "name": "avg", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_avg_order_by", "ofType": null }, "description": null }, { - "name": "id", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -40064,195 +47899,155 @@ "description": null }, { - "name": "min_count", + "name": "max", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_max_order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "min", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_min_order_by", "ofType": null }, "description": null }, { - "name": "request_time", + "name": "stddev", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_stddev_order_by", "ofType": null }, "description": null }, { - "name": "resolve_time", + "name": "stddev_pop", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_stddev_pop_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "stddev_samp", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_stddev_samp_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", + "name": "sum", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_sum_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "var_pop", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_var_pop_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", + "name": "var_samp", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_var_samp_order_by", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", + "name": "variance", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_variance_order_by", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"transactions\"", + "fields": null }, { "inputFields": [ { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "min_count", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "messages", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_append_input", + "enumValues": null, + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null + }, + { + "inputFields": [ { - "name": "request_time", + "name": "data", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_insert_input", + "ofType": null + } + } + } }, "description": null }, { - "name": "resolve_time", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "transactions_on_conflict", "ofType": null }, "description": null @@ -40261,9 +48056,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requests_stddev_samp_order_by", + "name": "transactions_arr_rel_insert_input", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"requests\"", + "description": "input type for inserting array relation for remote table \"transactions\"", "fields": null }, { @@ -40271,30 +48066,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "requests_sum_fields", + "name": "transactions_avg_fields", "enumValues": null, - "description": "aggregate sum on columns", + "description": "aggregate avg on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "expiration_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -40303,10 +48086,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "min_count", + "name": "gas_limit", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -40315,10 +48098,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "gas_used", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -40327,10 +48110,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "request_time", + "name": "index", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -40339,10 +48122,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "resolve_time", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null @@ -40352,17 +48135,7 @@ { "inputFields": [ { - "name": "expiration_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -40372,7 +48145,7 @@ "description": null }, { - "name": "min_count", + "name": "gas_limit", "defaultValue": null, "type": { "kind": "ENUM", @@ -40382,7 +48155,7 @@ "description": null }, { - "name": "oracle_script_id", + "name": "gas_used", "defaultValue": null, "type": { "kind": "ENUM", @@ -40392,7 +48165,7 @@ "description": null }, { - "name": "request_time", + "name": "index", "defaultValue": null, "type": { "kind": "ENUM", @@ -40402,7 +48175,7 @@ "description": null }, { - "name": "resolve_time", + "name": "timestamp", "defaultValue": null, "type": { "kind": "ENUM", @@ -40415,390 +48188,260 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requests_sum_order_by", + "name": "transactions_avg_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "requests_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "calldata", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "client_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "requester", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_status", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "result", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "tx_hash", - "description": "column name" - } - ], - "description": "update columns of table \"requests\"", + "description": "order by avg() on columns of table \"transactions\"", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_var_pop_fields", - "enumValues": null, - "description": "aggregate var_pop on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "_and", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", + "name": "_not", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "_or", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + } }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", + "name": "account", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "expiration_height", + "name": "block", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", "ofType": null }, "description": null }, { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "min_count", + "name": "data_source_revisions", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "gas_fee", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "request_time", + "name": "gas_limit", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "resolve_time", + "name": "gas_used", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_var_pop_order_by", - "enumValues": null, - "description": "order by var_pop() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "requests_var_samp_fields", - "enumValues": null, - "description": "aggregate var_samp on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", - "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "index", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", + "name": "messages", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "oracle_script_revisions", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", + "name": "raw_log", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", + "name": "reports", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "reports_bool_exp", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + }, { - "name": "expiration_height", + "name": "requests", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", "ofType": null }, "description": null }, { - "name": "id", + "name": "sender", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "min_count", + "name": "success", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "request_time", + "name": "tx_hash", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_bool_exp", + "enumValues": null, + "description": "Boolean expression to filter rows from the table \"transactions\". All fields are combined with a logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_constraint", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "transactions_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"transactions\"", + "fields": null + }, + { + "inputFields": [ { - "name": "resolve_time", + "name": "messages", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null } @@ -40806,1654 +48449,721 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "requests_var_samp_order_by", + "name": "transactions_delete_at_path_input", "enumValues": null, - "description": "order by var_samp() on columns of table \"requests\"", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "fields": null }, { - "inputFields": null, - "kind": "OBJECT", + "inputFields": [ + { + "name": "messages", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", "possibleTypes": null, - "interfaces": [], - "name": "requests_variance_fields", + "interfaces": null, + "name": "transactions_delete_elem_input", "enumValues": null, - "description": "aggregate variance on columns", - "fields": [ + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "expiration_height", + "name": "messages", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_delete_key_input", + "enumValues": null, + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "fields": null + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "id", + "name": "block_height", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_count", + "name": "gas_limit", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", + "name": "gas_used", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "request_time", + "name": "index", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "resolve_time", + "name": "timestamp", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_inc_input", + "enumValues": null, + "description": "input type for incrementing integer column in table \"transactions\"", + "fields": null }, { "inputFields": [ { - "name": "expiration_height", + "name": "account", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "accounts_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "id", + "name": "block", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "blocks_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "min_count", + "name": "block_height", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "data_source_revisions", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "request_time", + "name": "gas_fee", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "resolve_time", + "name": "gas_limit", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_variance_order_by", - "enumValues": null, - "description": "order by variance() on columns of table \"requests\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "subscription_root", - "enumValues": null, - "description": "subscription root", - "fields": [ - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "accounts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "accounts", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "accounts", - "ofType": null - } - } - } - }, - "description": "fetch data from the table: \"accounts\"" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "accounts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "accounts_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "accounts_aggregate", - "ofType": null - } - }, - "description": "fetch aggregated fields from the table: \"accounts\"" }, { - "args": [ - { - "name": "address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "accounts_by_pk", + "name": "gas_used", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "accounts", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"accounts\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "blocks_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "blocks", + "name": "index", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "blocks", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch data from the table: \"blocks\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "blocks_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "blocks_aggregate", + "name": "messages", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "blocks_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"blocks\"" + "description": null }, { - "args": [ - { - "name": "height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "blocks_by_pk", + "name": "oracle_script_revisions", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "blocks", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_arr_rel_insert_input", "ofType": null }, - "description": "fetch data from the table: \"blocks\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_source_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_revisions", + "name": "raw_log", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_source_revisions", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "fetch data from the table: \"data_source_revisions\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_source_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "data_source_revisions_aggregate", + "name": "reports", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_source_revisions_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "reports_arr_rel_insert_input", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"data_source_revisions\"" + "description": null }, { - "args": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], + "name": "requests", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_arr_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "sender", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "success", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_max_fields", + "enumValues": null, + "description": "aggregate max on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions_by_pk", + "name": "block_height", "type": { - "kind": "OBJECT", - "name": "data_source_revisions", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"data_source_revisions\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_sources", + "name": "gas_fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_sources", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_limit", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch data from the table: \"data_sources\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_sources_aggregate", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_sources_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"data_sources\"" + "description": null }, { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_sources_by_pk", + "name": "index", "type": { - "kind": "OBJECT", - "name": "data_sources", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"data_sources\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "delegations_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "delegations", + "name": "raw_log", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "delegations", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "fetch data from the table: \"delegations\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "delegations_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_aggregate", + "name": "sender", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "delegations_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"delegations\"" + "description": null }, { - "args": [ - { - "name": "delegator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_by_pk", + "name": "timestamp", "type": { - "kind": "OBJECT", - "name": "delegations", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"delegations\" using primary key columns" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "delegations_view_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_view_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_view_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "gas_fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "raw_log", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sender", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_view", + "name": "gas_fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "delegations_view", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "fetch data from the table: \"delegations_view\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "delegations_view_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_view_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_view_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_view_aggregate", + "name": "gas_limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "delegations_view_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"delegations_view\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "metadata_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "metadata", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "metadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch data from the table: \"metadata\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "metadata_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "metadata_aggregate", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "metadata_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"metadata\"" + "description": null }, { - "args": [ - { - "name": "key", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "metadata_by_pk", + "name": "raw_log", "type": { - "kind": "OBJECT", - "name": "metadata", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "description": "fetch data from the table: \"metadata\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "sender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "raw_log", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sender", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"transactions\"", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "affected_rows", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "description": "number of affected rows by the mutation" + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "returning", "type": { "kind": "NON_NULL", "name": null, @@ -42465,210 +49175,70 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "transactions", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_revisions\"" - }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "data", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "kind": "INPUT_OBJECT", + "name": "transactions_insert_input", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" + "description": null }, { - "args": [ - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_revisions_by_pk", + "name": "on_conflict", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_script_revisions", + "kind": "INPUT_OBJECT", + "name": "transactions_on_conflict", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" - }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"transactions\"", + "fields": null + }, + { + "inputFields": [ { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + "name": "constraint", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "transactions_constraint", + "ofType": null } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_scripts", + }, + "description": null + }, + { + "name": "update_columns", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, @@ -42679,3490 +49249,1538 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", + "kind": "ENUM", + "name": "transactions_update_column", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_scripts\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_scripts_aggregate", + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"transactions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "account", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "block", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "data_source_revisions_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_aggregate_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_fee", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "messages", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_revisions_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_aggregate_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "raw_log", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "reports_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "reports_aggregate_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "requests_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_aggregate_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sender", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "success", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"transactions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "tx_hash", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts_aggregate", + "kind": "SCALAR", + "name": "bytea", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_scripts\"" + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"transactions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "messages", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_prepend_input", + "enumValues": null, + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_select_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "description": "column name" }, { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_by_pk", + "name": "gas_fee", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_limit", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_used", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "index", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "messages", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_log", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "sender", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "success", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + } + ], + "description": "select columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "oracle_scripts", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "packets", + "name": "gas_fee", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "packets", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "description": "fetch data from the table: \"packets\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "packets_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "packets_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "packets_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "packets_aggregate", + "name": "gas_limit", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "packets_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"packets\"" + "description": null }, { - "args": [ - { - "name": "is_incoming", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "description": null - }, - { - "name": "my_channel", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "name": "my_port", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "name": "sequence", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "packets_by_pk", + "name": "gas_used", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "packets", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"packets\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "raw_data_requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "index", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "messages", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "description": null + }, + { + "name": "raw_log", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "sender", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "success", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_set_input", + "enumValues": null, + "description": "input type for updating data in table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "raw_data_requests", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"raw_data_requests\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "raw_data_requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_aggregate", + "name": "gas_limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "raw_data_requests_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"raw_data_requests\"" + "description": null }, { - "args": [ - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "raw_data_requests_by_pk", + "name": "gas_used", "type": { - "kind": "OBJECT", - "name": "raw_data_requests", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"raw_data_requests\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "related_data_sources", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"related_data_sources\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources_aggregate", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "related_data_sources_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"related_data_sources\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "related_data_sources_by_pk", + "name": "gas_limit", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "related_data_sources", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "description": "fetch data from the table: \"related_data_sources\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "report_details_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "report_details", + "name": "gas_used", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "report_details", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "description": "fetch data from the table: \"report_details\"" + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "report_details_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "report_details_aggregate", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "report_details_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"report_details\"" + "description": null }, { - "args": [ - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "report_details_by_pk", + "name": "gas_limit", "type": { - "kind": "OBJECT", - "name": "report_details", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"report_details\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"reports\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports_aggregate", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"reports\"" + "description": null }, { - "args": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports_by_pk", + "name": "timestamp", "type": { - "kind": "OBJECT", - "name": "reports", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"reports\" using primary key columns" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requested_validators", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"requested_validators\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requested_validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_aggregate", + "name": "gas_limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requested_validators_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"requested_validators\"" + "description": null }, { - "args": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_by_pk", + "name": "gas_used", "type": { - "kind": "OBJECT", - "name": "requested_validators", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"requested_validators\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"requests\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests_aggregate", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"requests\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "requests_by_pk", + "name": "gas_limit", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requests", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "description": "fetch data from the table: \"requests\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "transactions", + "name": "gas_used", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "description": "fetch data from the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_stddev_samp_order_by", + "enumValues": null, + "description": "order by stddev_samp() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transactions_aggregate", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transactions_by_pk", + "name": "gas_limit", "type": { - "kind": "OBJECT", - "name": "transactions", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "fetch data from the table: \"transactions\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_1000_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_1000_votes", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_1000_votes", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch data from the table: \"validator_last_1000_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_1000_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_1000_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_1000_votes_aggregate", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_1000_votes_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validator_last_1000_votes\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_250_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_250_votes", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_250_votes", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "fetch data from the table: \"validator_last_250_votes\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_sum_order_by", + "enumValues": null, + "description": "order by sum() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_update_column", + "enumValues": [ + { + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_fee", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_limit", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "gas_used", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "index", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "messages", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "raw_log", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "sender", + "description": "column name" }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_last_250_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_last_250_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], "isDeprecated": false, "deprecationReason": null, - "name": "validator_last_250_votes_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_last_250_votes_aggregate", - "ofType": null - } - }, - "description": "fetch aggregated fields from the table: \"validator_last_250_votes\"" + "name": "success", + "description": "column name" }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_votes", - "ofType": null - } - } - } - }, - "description": "fetch data from the table: \"validator_votes\"" + "name": "timestamp", + "description": "column name" }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validator_votes_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes_aggregate", + "name": "tx_hash", + "description": "column name" + } + ], + "description": "update columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validator_votes_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validator_votes\"" + "description": null }, { - "args": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "consensus_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validator_votes_by_pk", + "name": "gas_limit", "type": { - "kind": "OBJECT", - "name": "validator_votes", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"validator_votes\" using primary key columns" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validators", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch data from the table: \"validators\"" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators_aggregate", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "validators_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "fetch aggregated fields from the table: \"validators\"" + "description": null }, { - "args": [ - { - "name": "operator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "validators_by_pk", + "name": "timestamp", "type": { - "kind": "OBJECT", - "name": "validators", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "fetch data from the table: \"validators\" using primary key columns" + "description": null } ] }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_var_pop_order_by", + "enumValues": null, + "description": "order by var_pop() on columns of table \"transactions\"", + "fields": null + }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions", + "name": "transactions_var_samp_fields", "enumValues": null, - "description": "columns and relationships of \"transactions\"", + "description": "aggregate var_samp on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "account", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "accounts", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block", + "name": "gas_limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "blocks", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_source_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_source_revisions", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "data_source_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "data_source_revisions_aggregate", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_source_revisions_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An aggregated array relationship" - }, + "description": null + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_fee", + "name": "block_height", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, "name": "gas_limit", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, "name": "gas_used", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_var_samp_order_by", + "enumValues": null, + "description": "order by var_samp() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "transactions_variance_fields", + "enumValues": null, + "description": "aggregate variance on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null }, { - "args": [ - { - "name": "path", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": "JSON select path" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "messages", + "name": "gas_limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "gas_used", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "An aggregated array relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "raw_log", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "gas_limit", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "gas_used", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "index", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "transactions_variance_order_by", + "enumValues": null, + "description": "order by variance() on columns of table \"transactions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations", + "enumValues": null, + "description": "columns and relationships of \"unbonding_delegations\"", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports", + "name": "account", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } + "kind": "OBJECT", + "name": "accounts", + "ofType": null } }, - "description": "An array relationship" + "description": "An object relationship" }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "reports_aggregate", + "name": "balance", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests", + "name": "completion_time", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests_aggregate", + "name": "creation_height", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "requests_aggregate", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sender", + "name": "delegator_address", "type": { "kind": "NON_NULL", "name": null, @@ -46178,13 +50796,13 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "success", + "name": "initial_balance", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "bigint", "ofType": null } }, @@ -46194,29 +50812,29 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "validator", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "validators", "ofType": null } }, - "description": null + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "validator_address", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "String", "ofType": null } }, @@ -46229,9 +50847,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_aggregate", + "name": "unbonding_delegations_aggregate", "enumValues": null, - "description": "aggregated selection of \"transactions\"", + "description": "aggregated selection of \"unbonding_delegations\"", "fields": [ { "args": [], @@ -46240,7 +50858,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "transactions_aggregate_fields", + "name": "unbonding_delegations_aggregate_fields", "ofType": null }, "description": null @@ -46261,7 +50879,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "transactions", + "name": "unbonding_delegations", "ofType": null } } @@ -46276,9 +50894,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_aggregate_fields", + "name": "unbonding_delegations_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"transactions\"", + "description": "aggregate fields of \"unbonding_delegations\"", "fields": [ { "args": [], @@ -46287,7 +50905,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "transactions_avg_fields", + "name": "unbonding_delegations_avg_fields", "ofType": null }, "description": null @@ -46305,7 +50923,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "transactions_select_column", + "name": "unbonding_delegations_select_column", "ofType": null } } @@ -46340,7 +50958,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "transactions_max_fields", + "name": "unbonding_delegations_max_fields", "ofType": null }, "description": null @@ -46352,7 +50970,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "transactions_min_fields", + "name": "unbonding_delegations_min_fields", "ofType": null }, "description": null @@ -46364,7 +50982,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "transactions_stddev_fields", + "name": "unbonding_delegations_stddev_fields", "ofType": null }, "description": null @@ -46376,7 +50994,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "transactions_stddev_pop_fields", + "name": "unbonding_delegations_stddev_pop_fields", "ofType": null }, "description": null @@ -46388,7 +51006,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "transactions_stddev_samp_fields", + "name": "unbonding_delegations_stddev_samp_fields", "ofType": null }, "description": null @@ -46400,7 +51018,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "transactions_sum_fields", + "name": "unbonding_delegations_sum_fields", "ofType": null }, "description": null @@ -46412,7 +51030,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "transactions_var_pop_fields", + "name": "unbonding_delegations_var_pop_fields", "ofType": null }, "description": null @@ -46424,7 +51042,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "transactions_var_samp_fields", + "name": "unbonding_delegations_var_samp_fields", "ofType": null }, "description": null @@ -46436,7 +51054,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "transactions_variance_fields", + "name": "unbonding_delegations_variance_fields", "ofType": null }, "description": null @@ -46450,7 +51068,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_avg_order_by", + "name": "unbonding_delegations_avg_order_by", "ofType": null }, "description": null @@ -46470,7 +51088,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_max_order_by", + "name": "unbonding_delegations_max_order_by", "ofType": null }, "description": null @@ -46480,7 +51098,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_min_order_by", + "name": "unbonding_delegations_min_order_by", "ofType": null }, "description": null @@ -46490,7 +51108,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_stddev_order_by", + "name": "unbonding_delegations_stddev_order_by", "ofType": null }, "description": null @@ -46500,7 +51118,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_stddev_pop_order_by", + "name": "unbonding_delegations_stddev_pop_order_by", "ofType": null }, "description": null @@ -46510,7 +51128,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_stddev_samp_order_by", + "name": "unbonding_delegations_stddev_samp_order_by", "ofType": null }, "description": null @@ -46520,7 +51138,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_sum_order_by", + "name": "unbonding_delegations_sum_order_by", "ofType": null }, "description": null @@ -46530,7 +51148,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_var_pop_order_by", + "name": "unbonding_delegations_var_pop_order_by", "ofType": null }, "description": null @@ -46540,7 +51158,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_var_samp_order_by", + "name": "unbonding_delegations_var_samp_order_by", "ofType": null }, "description": null @@ -46550,28 +51168,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_variance_order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_aggregate_order_by", - "enumValues": null, - "description": "order by aggregate values of table \"transactions\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "messages", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", + "name": "unbonding_delegations_variance_order_by", "ofType": null }, "description": null @@ -46580,9 +51177,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_append_input", + "name": "unbonding_delegations_aggregate_order_by", "enumValues": null, - "description": "append existing jsonb value of filtered columns with new jsonb value", + "description": "order by aggregate values of table \"unbonding_delegations\"", "fields": null }, { @@ -46601,59 +51198,37 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_insert_input", + "name": "unbonding_delegations_insert_input", "ofType": null } } } }, "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_on_conflict", - "ofType": null - }, - "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_arr_rel_insert_input", - "enumValues": null, - "description": "input type for inserting array relation for remote table \"transactions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "transactions_avg_fields", + "name": "unbonding_delegations_arr_rel_insert_input", "enumValues": null, - "description": "aggregate avg on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, + "description": "input type for inserting array relation for remote table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_avg_fields", + "enumValues": null, + "description": "aggregate avg on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "balance", "type": { "kind": "SCALAR", "name": "Float", @@ -46665,7 +51240,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "completion_time", "type": { "kind": "SCALAR", "name": "Float", @@ -46677,7 +51252,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "creation_height", "type": { "kind": "SCALAR", "name": "Float", @@ -46689,7 +51264,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "initial_balance", "type": { "kind": "SCALAR", "name": "Float", @@ -46702,17 +51277,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -46722,7 +51287,7 @@ "description": null }, { - "name": "gas_used", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -46732,7 +51297,7 @@ "description": null }, { - "name": "index", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -46742,7 +51307,7 @@ "description": null }, { - "name": "timestamp", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -46755,9 +51320,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_avg_order_by", + "name": "unbonding_delegations_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"transactions\"", + "description": "order by avg() on columns of table \"unbonding_delegations\"", "fields": null }, { @@ -46770,7 +51335,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null } }, @@ -46781,7 +51346,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null }, "description": null @@ -46794,7 +51359,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null } }, @@ -46811,47 +51376,7 @@ "description": null }, { - "name": "block", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "data_source_revisions", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "gas_fee", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", + "name": "balance", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -46861,7 +51386,7 @@ "description": null }, { - "name": "gas_used", + "name": "completion_time", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -46871,7 +51396,7 @@ "description": null }, { - "name": "index", + "name": "creation_height", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -46881,27 +51406,7 @@ "description": null }, { - "name": "messages", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_revisions", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": null - }, - { - "name": "raw_log", + "name": "delegator_address", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -46911,27 +51416,27 @@ "description": null }, { - "name": "reports", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "requests", + "name": "validator", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "name": "validators_bool_exp", "ofType": null }, "description": null }, { - "name": "sender", + "name": "validator_address", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -46939,117 +51444,54 @@ "ofType": null }, "description": null - }, - { - "name": "success", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "description": null - }, - { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", - "ofType": null - }, - "description": null } ], "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_bool_exp", + "name": "unbonding_delegations_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"transactions\". All fields are combined with a logical 'AND'.", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_constraint", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "transactions_pkey", - "description": "unique or primary key constraint" - } - ], - "description": "unique or primary key constraints on table \"transactions\"", + "description": "Boolean expression to filter rows from the table \"unbonding_delegations\". All fields are combined with a logical 'AND'.", "fields": null }, { "inputFields": [ { - "name": "messages", + "name": "balance", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_delete_at_path_input", - "enumValues": null, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "messages", + "name": "completion_time", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_delete_elem_input", - "enumValues": null, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "messages", + "name": "creation_height", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "initial_balance", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null @@ -47058,25 +51500,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_delete_key_input", + "name": "unbonding_delegations_inc_input", "enumValues": null, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "description": "input type for incrementing integer column in table \"unbonding_delegations\"", "fields": null }, { "inputFields": [ { - "name": "block_height", + "name": "account", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "accounts_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "gas_limit", + "name": "balance", "defaultValue": null, "type": { "kind": "SCALAR", @@ -47086,7 +51528,7 @@ "description": null }, { - "name": "gas_used", + "name": "completion_time", "defaultValue": null, "type": { "kind": "SCALAR", @@ -47096,7 +51538,7 @@ "description": null }, { - "name": "index", + "name": "creation_height", "defaultValue": null, "type": { "kind": "SCALAR", @@ -47106,48 +51548,17 @@ "description": null }, { - "name": "timestamp", + "name": "delegator_address", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_inc_input", - "enumValues": null, - "description": "input type for incrementing integer columne in table \"transactions\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "account", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_obj_rel_insert_input", - "ofType": null - }, - "description": null - }, - { - "name": "block", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_obj_rel_insert_input", + "name": "String", "ofType": null }, "description": null }, { - "name": "block_height", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "SCALAR", @@ -47157,17 +51568,17 @@ "description": null }, { - "name": "data_source_revisions", + "name": "validator", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_arr_rel_insert_input", + "name": "validators_obj_rel_insert_input", "ofType": null }, "description": null }, { - "name": "gas_fee", + "name": "validator_address", "defaultValue": null, "type": { "kind": "SCALAR", @@ -47175,10 +51586,30 @@ "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_max_fields", + "enumValues": null, + "description": "aggregate max on columns", + "fields": [ { - "name": "gas_limit", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { "kind": "SCALAR", "name": "bigint", @@ -47187,8 +51618,10 @@ "description": null }, { - "name": "gas_used", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "completion_time", "type": { "kind": "SCALAR", "name": "bigint", @@ -47197,8 +51630,10 @@ "description": null }, { - "name": "index", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { "kind": "SCALAR", "name": "bigint", @@ -47207,91 +51642,101 @@ "description": null }, { - "name": "messages", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegator_address", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "String", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_arr_rel_insert_input", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "raw_log", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "validator_address", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "reports", + "name": "balance", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "requests", + "name": "completion_time", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_arr_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "sender", + "name": "creation_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "success", + "name": "delegator_address", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "initial_balance", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "validator_address", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bytea", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -47300,9 +51745,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_insert_input", + "name": "unbonding_delegations_max_order_by", "enumValues": null, - "description": "input type for inserting data into table \"transactions\"", + "description": "order by max() on columns of table \"unbonding_delegations\"", "fields": null }, { @@ -47310,15 +51755,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_max_fields", + "name": "unbonding_delegations_min_fields", "enumValues": null, - "description": "aggregate max on columns", + "description": "aggregate min on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "balance", "type": { "kind": "SCALAR", "name": "bigint", @@ -47330,10 +51775,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_fee", + "name": "completion_time", "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "description": null @@ -47342,7 +51787,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "creation_height", "type": { "kind": "SCALAR", "name": "bigint", @@ -47354,10 +51799,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "delegator_address", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -47366,7 +51811,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "initial_balance", "type": { "kind": "SCALAR", "name": "bigint", @@ -47378,54 +51823,177 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "raw_log", + "name": "validator_address", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "balance", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "completion_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "creation_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "delegator_address", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "initial_balance", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, + { + "name": "validator_address", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_mutation_response", + "enumValues": null, + "description": "response of any mutation on the table \"unbonding_delegations\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sender", + "name": "affected_rows", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "description": null + "description": "number of affected rows by the mutation" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "returning", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "unbonding_delegations", + "ofType": null + } + } + } }, - "description": null + "description": "data of the affected rows by the mutation" } ] }, { "inputFields": [ { - "name": "block_height", + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_insert_input", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "account", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "accounts_order_by", "ofType": null }, "description": null }, { - "name": "gas_fee", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47435,7 +52003,7 @@ "description": null }, { - "name": "gas_limit", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -47445,7 +52013,7 @@ "description": null }, { - "name": "gas_used", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -47455,7 +52023,7 @@ "description": null }, { - "name": "index", + "name": "delegator_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -47465,7 +52033,7 @@ "description": null }, { - "name": "raw_log", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47475,17 +52043,17 @@ "description": null }, { - "name": "sender", + "name": "validator", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "validators_order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "validator_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -47498,49 +52066,63 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_max_order_by", + "name": "unbonding_delegations_order_by", "enumValues": null, - "description": "order by max() on columns of table \"transactions\"", + "description": "ordering options when selecting data from \"unbonding_delegations\"", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "transactions_min_fields", - "enumValues": null, - "description": "aggregate min on columns", - "fields": [ + "interfaces": null, + "name": "unbonding_delegations_select_column", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null + "name": "balance", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_fee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null + "name": "completion_time", + "description": "column name" }, { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "creation_height", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "delegator_address", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "validator_address", + "description": "column name" + } + ], + "description": "select columns of table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "balance", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "bigint", @@ -47549,10 +52131,8 @@ "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_used", + "name": "completion_time", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "bigint", @@ -47561,10 +52141,8 @@ "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "index", + "name": "creation_height", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "bigint", @@ -47573,10 +52151,8 @@ "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "raw_log", + "name": "delegator_address", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "String", @@ -47585,75 +52161,97 @@ "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "sender", + "name": "initial_balance", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", + "name": "validator_address", + "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_set_input", + "enumValues": null, + "description": "input type for updating data in table \"unbonding_delegations\"", + "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_stddev_fields", + "enumValues": null, + "description": "aggregate stddev on columns", + "fields": [ { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "gas_fee", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "completion_time", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "gas_limit", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "gas_used", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "index", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47663,7 +52261,7 @@ "description": null }, { - "name": "raw_log", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -47673,7 +52271,7 @@ "description": null }, { - "name": "sender", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -47683,7 +52281,7 @@ "description": null }, { - "name": "timestamp", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47696,9 +52294,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_min_order_by", + "name": "unbonding_delegations_stddev_order_by", "enumValues": null, - "description": "order by min() on columns of table \"transactions\"", + "description": "order by stddev() on columns of table \"unbonding_delegations\"", "fields": null }, { @@ -47706,131 +52304,98 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_mutation_response", + "name": "unbonding_delegations_stddev_pop_fields", "enumValues": null, - "description": "response of any mutation on the table \"transactions\"", + "description": "aggregate stddev_pop on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "balance", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", + "name": "completion_time", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "transactions", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ + "description": null + }, { - "name": "data", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_insert_input", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null }, { - "name": "on_conflict", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_on_conflict", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"transactions\"", - "fields": null + ] }, { "inputFields": [ { - "name": "constraint", + "name": "balance", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_constraint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "update_columns", + "name": "completion_time", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "transactions_update_column", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "where", + "name": "creation_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "initial_balance", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -47839,65 +52404,74 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_on_conflict", + "name": "unbonding_delegations_stddev_pop_order_by", "enumValues": null, - "description": "on conflict condition type for table \"transactions\"", + "description": "order by stddev_pop() on columns of table \"unbonding_delegations\"", "fields": null }, { - "inputFields": [ - { - "name": "account", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "accounts_order_by", - "ofType": null - }, - "description": null - }, + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "block", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { - "kind": "INPUT_OBJECT", - "name": "blocks_order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "completion_time", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "data_source_revisions_aggregate", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_aggregate_order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null }, { - "name": "gas_fee", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "gas_limit", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47907,7 +52481,7 @@ "description": null }, { - "name": "gas_used", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -47917,7 +52491,7 @@ "description": null }, { - "name": "index", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -47927,7 +52501,7 @@ "description": null }, { - "name": "messages", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47935,49 +52509,79 @@ "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_stddev_samp_order_by", + "enumValues": null, + "description": "order by stddev_samp() on columns of table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ { - "name": "oracle_script_revisions_aggregate", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_aggregate_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "raw_log", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "completion_time", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "reports_aggregate", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "requests_aggregate", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { - "kind": "INPUT_OBJECT", - "name": "requests_aggregate_order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "sender", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -47987,7 +52591,7 @@ "description": null }, { - "name": "success", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -47997,7 +52601,7 @@ "description": null }, { - "name": "timestamp", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -48007,7 +52611,7 @@ "description": null }, { - "name": "tx_hash", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -48020,217 +52624,218 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_order_by", + "name": "unbonding_delegations_sum_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"transactions\"", + "description": "order by sum() on columns of table \"unbonding_delegations\"", "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "messages", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Float", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_prepend_input", - "enumValues": null, - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_fee", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_used", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "index", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "messages", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "raw_log", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "sender", - "description": "column name" }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "success", - "description": "column name" + "name": "completion_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", - "description": "column name" + "name": "creation_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", - "description": "column name" + "name": "initial_balance", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null } - ], - "description": "select columns of table \"transactions\"", - "fields": null + ] }, { "inputFields": [ { - "name": "block_height", + "name": "balance", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "gas_fee", + "name": "completion_time", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "gas_limit", + "name": "creation_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "gas_used", + "name": "initial_balance", "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "unbonding_delegations_var_pop_order_by", + "enumValues": null, + "description": "order by var_pop() on columns of table \"unbonding_delegations\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "unbonding_delegations_var_samp_fields", + "enumValues": null, + "description": "aggregate var_samp on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "balance", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null }, { - "name": "index", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "completion_time", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Float", "ofType": null }, "description": null }, { - "name": "messages", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "creation_height", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Float", "ofType": null }, "description": null }, { - "name": "raw_log", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "initial_balance", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "sender", + "name": "balance", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "success", + "name": "completion_time", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "creation_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "initial_balance", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bytea", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -48239,9 +52844,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_set_input", + "name": "unbonding_delegations_var_samp_order_by", "enumValues": null, - "description": "input type for updating data in table \"transactions\"", + "description": "order by var_samp() on columns of table \"unbonding_delegations\"", "fields": null }, { @@ -48249,27 +52854,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_stddev_fields", + "name": "unbonding_delegations_variance_fields", "enumValues": null, - "description": "aggregate stddev on columns", + "description": "aggregate variance on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", + "name": "balance", "type": { "kind": "SCALAR", "name": "Float", @@ -48281,7 +52874,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "completion_time", "type": { "kind": "SCALAR", "name": "Float", @@ -48293,7 +52886,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "creation_height", "type": { "kind": "SCALAR", "name": "Float", @@ -48305,7 +52898,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "initial_balance", "type": { "kind": "SCALAR", "name": "Float", @@ -48318,17 +52911,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", + "name": "balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -48338,7 +52921,7 @@ "description": null }, { - "name": "gas_used", + "name": "completion_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -48348,7 +52931,7 @@ "description": null }, { - "name": "index", + "name": "creation_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -48358,7 +52941,7 @@ "description": null }, { - "name": "timestamp", + "name": "initial_balance", "defaultValue": null, "type": { "kind": "ENUM", @@ -48371,9 +52954,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_stddev_order_by", + "name": "unbonding_delegations_variance_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"transactions\"", + "description": "order by variance() on columns of table \"unbonding_delegations\"", "fields": null }, { @@ -48381,18 +52964,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_stddev_pop_fields", + "name": "validator_last_10000_votes", "enumValues": null, - "description": "aggregate stddev_pop on columns", + "description": "columns and relationships of \"validator_last_10000_votes\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "consensus_address", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "description": null @@ -48401,10 +52984,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null @@ -48413,22 +52996,33 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "voted", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_aggregate", + "enumValues": null, + "description": "aggregated selection of \"validator_last_10000_votes\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "validator_last_10000_votes_aggregate_fields", "ofType": null }, "description": null @@ -48437,94 +53031,134 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "validator_last_10000_votes", + "ofType": null + } + } + } }, "description": null } ] }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"validator_last_10000_votes\"", + "fields": [ { - "name": "block_height", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "avg", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "validator_last_10000_votes_avg_fields", "ofType": null }, "description": null }, { - "name": "gas_limit", - "defaultValue": null, + "args": [ + { + "name": "columns", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "validator_last_10000_votes_select_column", + "ofType": null + } + } + }, + "description": null + }, + { + "name": "distinct", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "count", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "description": null }, { - "name": "gas_used", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "max", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "validator_last_10000_votes_max_fields", "ofType": null }, "description": null }, { - "name": "index", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "validator_last_10000_votes_min_fields", "ofType": null }, "description": null }, { - "name": "timestamp", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "stddev", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "validator_last_10000_votes_stddev_fields", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_stddev_pop_order_by", - "enumValues": null, - "description": "order by stddev_pop() on columns of table \"transactions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "transactions_stddev_samp_fields", - "enumValues": null, - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "stddev_pop", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "validator_last_10000_votes_stddev_pop_fields", "ofType": null }, "description": null @@ -48533,10 +53167,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "stddev_samp", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "validator_last_10000_votes_stddev_samp_fields", "ofType": null }, "description": null @@ -48545,10 +53179,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "validator_last_10000_votes_sum_fields", "ofType": null }, "description": null @@ -48557,10 +53191,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "var_pop", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "validator_last_10000_votes_var_pop_fields", "ofType": null }, "description": null @@ -48569,64 +53203,259 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "var_samp", + "type": { + "kind": "OBJECT", + "name": "validator_last_10000_votes_var_samp_fields", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "validator_last_10000_votes_variance_fields", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "avg", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_avg_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "max", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_max_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "min", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_min_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_stddev_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_stddev_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "stddev_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_stddev_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sum", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_sum_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_var_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_var_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "variance", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_variance_order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_avg_fields", + "enumValues": null, + "description": "aggregate avg on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "count", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - } - ] - }, - { - "inputFields": [ + } + ] + }, + { + "inputFields": [ + { + "name": "count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_avg_order_by", + "enumValues": null, + "description": "order by avg() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "_and", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_bool_exp", + "ofType": null + } + }, + "description": null + }, { - "name": "block_height", + "name": "_not", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_bool_exp", "ofType": null }, "description": null }, { - "name": "gas_limit", + "name": "_or", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_last_10000_votes_bool_exp", + "ofType": null + } }, "description": null }, { - "name": "gas_used", + "name": "consensus_address", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "index", + "name": "count", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "voted", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "description": null @@ -48635,9 +53464,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_stddev_samp_order_by", + "name": "validator_last_10000_votes_bool_exp", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"transactions\"", + "description": "Boolean expression to filter rows from the table \"validator_last_10000_votes\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -48645,18 +53474,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_sum_fields", + "name": "validator_last_10000_votes_max_fields", "enumValues": null, - "description": "aggregate sum on columns", + "description": "aggregate max on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "consensus_address", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -48665,34 +53494,64 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_limit", + "name": "count", "type": { "kind": "SCALAR", "name": "bigint", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_used", + "name": "consensus_address", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, + { + "name": "count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_max_order_by", + "enumValues": null, + "description": "order by max() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "index", + "name": "consensus_address", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -48701,7 +53560,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "count", "type": { "kind": "SCALAR", "name": "bigint", @@ -48714,7 +53573,7 @@ { "inputFields": [ { - "name": "block_height", + "name": "consensus_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -48724,7 +53583,7 @@ "description": null }, { - "name": "gas_limit", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -48732,9 +53591,20 @@ "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_min_order_by", + "enumValues": null, + "description": "order by min() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": [ { - "name": "gas_used", + "name": "consensus_address", "defaultValue": null, "type": { "kind": "ENUM", @@ -48744,7 +53614,7 @@ "description": null }, { - "name": "index", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -48754,7 +53624,7 @@ "description": null }, { - "name": "timestamp", + "name": "voted", "defaultValue": null, "type": { "kind": "ENUM", @@ -48767,9 +53637,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_sum_order_by", + "name": "validator_last_10000_votes_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"transactions\"", + "description": "ordering options when selecting data from \"validator_last_10000_votes\"", "fields": null }, { @@ -48777,76 +53647,28 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "transactions_update_column", + "name": "validator_last_10000_votes_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_fee", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_used", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "index", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "messages", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "raw_log", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "sender", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "success", + "name": "consensus_address", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "count", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "voted", "description": "column name" } ], - "description": "update columns of table \"transactions\"", + "description": "select columns of table \"validator_last_10000_votes\"", "fields": null }, { @@ -48854,63 +53676,103 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_var_pop_fields", + "name": "validator_last_10000_votes_stddev_fields", "enumValues": null, - "description": "aggregate var_pop on columns", + "description": "aggregate stddev on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", + "name": "count", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "index", + "name": "count", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_stddev_pop_order_by", + "enumValues": null, + "description": "order by stddev_pop() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", @@ -48923,47 +53785,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_used", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "index", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -48976,9 +53798,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_var_pop_order_by", + "name": "validator_last_10000_votes_stddev_samp_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"transactions\"", + "description": "order by stddev_samp() on columns of table \"validator_last_10000_votes\"", "fields": null }, { @@ -48986,63 +53808,103 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_var_samp_fields", + "name": "validator_last_10000_votes_sum_fields", "enumValues": null, - "description": "aggregate var_samp on columns", + "description": "aggregate sum on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", + "name": "count", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_sum_order_by", + "enumValues": null, + "description": "order by sum() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "gas_used", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "index", + "name": "count", + "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_last_10000_votes_var_pop_order_by", + "enumValues": null, + "description": "order by var_pop() on columns of table \"validator_last_10000_votes\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "validator_last_10000_votes_var_samp_fields", + "enumValues": null, + "description": "aggregate var_samp on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", @@ -49055,47 +53917,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_used", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "index", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -49108,9 +53930,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_var_samp_order_by", + "name": "validator_last_10000_votes_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"transactions\"", + "description": "order by var_samp() on columns of table \"validator_last_10000_votes\"", "fields": null }, { @@ -49118,7 +53940,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "transactions_variance_fields", + "name": "validator_last_10000_votes_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -49126,55 +53948,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_limit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "gas_used", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", + "name": "count", "type": { "kind": "SCALAR", "name": "Float", @@ -49187,47 +53961,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_limit", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "gas_used", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "index", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", + "name": "count", "defaultValue": null, "type": { "kind": "ENUM", @@ -49240,9 +53974,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "transactions_variance_order_by", + "name": "validator_last_10000_votes_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"transactions\"", + "description": "order by variance() on columns of table \"validator_last_10000_votes\"", "fields": null }, { @@ -51911,7 +56645,7 @@ "interfaces": null, "name": "validator_votes_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"validator_votes\"", + "description": "input type for incrementing integer column in table \"validator_votes\"", "fields": null }, { @@ -52291,6 +57025,45 @@ "description": "ordering options when selecting data from \"validator_votes\"", "fields": null }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "consensus_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validator_votes_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"validator_votes\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", @@ -52849,7 +57622,309 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_order_by", + "name": "blocks_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "blocks_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "blocks_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "bonded_height", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "commission_max_change", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "commission_max_rate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "commission_rate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "consensus_address", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "consensus_pubkey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "current_ratio", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "current_reward", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "delegations", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "delegations", + "ofType": null + } + } + } + }, + "description": "An array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "delegations_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_order_by", "ofType": null } } @@ -52861,7 +57936,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", + "name": "delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -52869,13 +57944,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "blocks_aggregate", + "name": "delegations_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "blocks_aggregate", + "name": "delegations_aggregate", "ofType": null } }, @@ -52885,23 +57960,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "bonded_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "commission_max_change", + "name": "delegator_shares", "type": { "kind": "NON_NULL", "name": null, @@ -52917,7 +57976,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "commission_max_rate", + "name": "details", "type": { "kind": "NON_NULL", "name": null, @@ -52933,7 +57992,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "commission_rate", + "name": "identity", "type": { "kind": "NON_NULL", "name": null, @@ -52949,13 +58008,13 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "consensus_address", + "name": "jailed", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -52965,7 +58024,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "consensus_pubkey", + "name": "min_self_delegation", "type": { "kind": "NON_NULL", "name": null, @@ -52981,7 +58040,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "current_ratio", + "name": "moniker", "type": { "kind": "NON_NULL", "name": null, @@ -52997,7 +58056,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "current_reward", + "name": "operator_address", "type": { "kind": "NON_NULL", "name": null, @@ -53022,7 +58081,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_select_column", + "name": "reports_select_column", "ofType": null } } @@ -53060,7 +58119,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_order_by", + "name": "reports_order_by", "ofType": null } } @@ -53072,7 +58131,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53080,7 +58139,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations", + "name": "reports", "type": { "kind": "NON_NULL", "name": null, @@ -53092,7 +58151,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations", + "name": "reports", "ofType": null } } @@ -53113,7 +58172,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "delegations_select_column", + "name": "reports_select_column", "ofType": null } } @@ -53151,7 +58210,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_order_by", + "name": "reports_order_by", "ofType": null } } @@ -53163,7 +58222,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", + "name": "reports_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53171,130 +58230,18 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delegations_aggregate", + "name": "reports_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "delegations_aggregate", + "name": "reports_aggregate", "ofType": null } }, "description": "An aggregated array relationship" }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "delegator_shares", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "details", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "identity", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "jailed", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "min_self_delegation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "moniker", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "operator_address", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, { "args": [ { @@ -53308,7 +58255,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "reports_select_column", + "name": "requested_validators_select_column", "ofType": null } } @@ -53346,7 +58293,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_order_by", + "name": "requested_validators_order_by", "ofType": null } } @@ -53358,7 +58305,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53366,7 +58313,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "reports", + "name": "requested_validators", "type": { "kind": "NON_NULL", "name": null, @@ -53378,7 +58325,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "reports", + "name": "requested_validators", "ofType": null } } @@ -53399,7 +58346,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "reports_select_column", + "name": "requested_validators_select_column", "ofType": null } } @@ -53437,7 +58384,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_order_by", + "name": "requested_validators_order_by", "ofType": null } } @@ -53449,7 +58396,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", + "name": "requested_validators_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53457,18 +58404,34 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "reports_aggregate", + "name": "requested_validators_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "reports_aggregate", + "name": "requested_validators_aggregate", "ofType": null } }, "description": "An aggregated array relationship" }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "tokens", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, { "args": [ { @@ -53482,7 +58445,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requested_validators_select_column", + "name": "unbonding_delegations_select_column", "ofType": null } } @@ -53520,7 +58483,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", + "name": "unbonding_delegations_order_by", "ofType": null } } @@ -53532,7 +58495,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53540,7 +58503,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators", + "name": "unbonding_delegations", "type": { "kind": "NON_NULL", "name": null, @@ -53552,7 +58515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "requested_validators", + "name": "unbonding_delegations", "ofType": null } } @@ -53573,7 +58536,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "requested_validators_select_column", + "name": "unbonding_delegations_select_column", "ofType": null } } @@ -53611,7 +58574,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_order_by", + "name": "unbonding_delegations_order_by", "ofType": null } } @@ -53623,7 +58586,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -53631,34 +58594,18 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "requested_validators_aggregate", + "name": "unbonding_delegations_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "requested_validators_aggregate", + "name": "unbonding_delegations_aggregate", "ofType": null } }, "description": "An aggregated array relationship" }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "tokens", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, { "args": [ { @@ -54540,6 +59487,16 @@ }, "description": null }, + { + "name": "unbonding_delegations", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_bool_exp", + "ofType": null + }, + "description": null + }, { "name": "validator_votes", "defaultValue": null, @@ -54620,7 +59577,7 @@ "interfaces": null, "name": "validators_inc_input", "enumValues": null, - "description": "input type for incrementing integer columne in table \"validators\"", + "description": "input type for incrementing integer column in table \"validators\"", "fields": null }, { @@ -54825,6 +59782,16 @@ }, "description": null }, + { + "name": "unbonding_delegations", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_arr_rel_insert_input", + "ofType": null + }, + "description": null + }, { "name": "validator_votes", "defaultValue": null, @@ -55947,6 +60914,16 @@ }, "description": null }, + { + "name": "unbonding_delegations_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "unbonding_delegations_aggregate_order_by", + "ofType": null + }, + "description": null + }, { "name": "validator_votes_aggregate", "defaultValue": null, @@ -55976,6 +60953,31 @@ "description": "ordering options when selecting data from \"validators\"", "fields": null }, + { + "inputFields": [ + { + "name": "operator_address", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "validators_pk_columns_input", + "enumValues": null, + "description": "primary key columns input for table: \"validators\"", + "fields": null + }, { "inputFields": null, "kind": "ENUM", diff --git a/scan/src/components/PieChart.re b/scan/src/components/PieChart.re index 72ff455ce3..d50e3bec5a 100644 --- a/scan/src/components/PieChart.re +++ b/scan/src/components/PieChart.re @@ -51,13 +51,15 @@ let renderSegment = (offset, angle, color) => ; [@react.component] -let make = (~size, ~availableBalance, ~balanceAtStake, ~reward) => { - let totalBalance = availableBalance +. balanceAtStake; +let make = (~size, ~availableBalance, ~balanceAtStake, ~reward, ~unbonding) => { + let totalBalance = availableBalance +. balanceAtStake +. unbonding; let balanceAtStakeAngle = totalBalance == 0. ? 0. : 360. *. balanceAtStake /. totalBalance; + let unbondingAngle = totalBalance == 0. ? 0. : 360. *. unbonding /. totalBalance; let rewardAngle = totalBalance == 0. ? 0. : 360. *. reward /. totalBalance;
{renderSegment(0., balanceAtStakeAngle, Colors.chartBalanceAtStake)} {renderSegment(balanceAtStakeAngle, rewardAngle, Colors.chartReward)} + {renderSegment(balanceAtStakeAngle +. rewardAngle, unbondingAngle, Colors.blue4)}
; }; diff --git a/scan/src/pages/AccountIndexPage.re b/scan/src/pages/AccountIndexPage.re index 934305582d..47f3128aef 100644 --- a/scan/src/pages/AccountIndexPage.re +++ b/scan/src/pages/AccountIndexPage.re @@ -12,7 +12,7 @@ module Styles = { let separatorLine = style([ width(`px(1)), - height(`px(200)), + height(`px(275)), backgroundColor(Colors.gray7), marginLeft(`px(20)), opacity(0.3), @@ -34,7 +34,7 @@ module Styles = { flexDirection(`column), justifyContent(`spaceBetween), alignItems(`flexEnd), - height(`px(190)), + height(`px(200)), padding2(~v=`px(12), ~h=`zero), ]); @@ -118,17 +118,20 @@ let make = (~address, ~hashtag: Route.account_tab_t) => let accountSub = AccountSub.get(address); let infoSub = React.useContext(GlobalContext.context); let balanceAtStakeSub = DelegationSub.getTotalStakeByDelegator(address); + let unbondingAmountSub = UnbondingSub.getUnBondingBalance(address); let%Sub info = infoSub; let%Sub account = accountSub; let%Sub balanceAtStake = balanceAtStakeSub; + let%Sub unbondingAmount = unbondingAmountSub; let availableBalance = account.balance->Coin.getBandAmountFromCoins; let usdPrice = info.financial.usdPrice; let totalBalance = availableBalance +. balanceAtStake.amount->Coin.getBandAmountFromCoin - +. balanceAtStake.reward->Coin.getBandAmountFromCoin; + +. balanceAtStake.reward->Coin.getBandAmountFromCoin + +. unbondingAmount->Coin.getBandAmountFromCoin; <> @@ -161,12 +164,13 @@ let make = (~address, ~hashtag: Route.account_tab_t) => availableBalance balanceAtStake={balanceAtStake.amount->Coin.getBandAmountFromCoin} reward={balanceAtStake.reward->Coin.getBandAmountFromCoin} + unbonding={unbondingAmount->Coin.getBandAmountFromCoin} /> {balanceDetail("AVAILABLE BALANCE", availableBalance, usdPrice, Colors.bandBlue)} - + {balanceDetail( "BALANCE AT STAKE", @@ -174,7 +178,15 @@ let make = (~address, ~hashtag: Route.account_tab_t) => usdPrice, Colors.chartBalanceAtStake, )} - + + + {balanceDetail( + "UNBONDING AMOUNT", + unbondingAmount->Coin.getBandAmountFromCoin, + usdPrice, + Colors.blue4, + )} + {balanceDetail( "REWARD", diff --git a/scan/src/subscriptions/UnbondingSub.re b/scan/src/subscriptions/UnbondingSub.re new file mode 100644 index 0000000000..f734aa0162 --- /dev/null +++ b/scan/src/subscriptions/UnbondingSub.re @@ -0,0 +1,34 @@ +type t = {balance: Coin.t}; + +module SingleConfig = [%graphql + {| + subscription Unbonding($delegator_address: String!) { + unbonding_delegations_aggregate(where: {delegator_address: {_eq: $delegator_address}}) { + aggregate { + sum { + balance @bsDecoder(fn: "GraphQLParser.coinWithDefault") + } + } + } + } +|} +]; + +let getUnBondingBalance = delegatorAddress => { + let (result, _) = + ApolloHooks.useSubscription( + SingleConfig.definition, + ~variables= + SingleConfig.makeVariables(~delegator_address=delegatorAddress |> Address.toBech32, ()), + ); + + let unbondingInfoSub = + result + |> Sub.map(_, a => + (a##unbonding_delegations_aggregate##aggregate |> Belt_Option.getExn)##sum + |> Belt_Option.getExn + ); + + let%Sub unbondingInfo = unbondingInfoSub; + unbondingInfo##balance |> Sub.resolve; +}; From 71b3e2d84259ad72a88e65b60cf59af295eb16d4 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 19:58:46 +0700 Subject: [PATCH 06/10] updated: graphql schema --- scan/graphql_schema.json | 10959 ++++++++++++++++++------------------- 1 file changed, 5223 insertions(+), 5736 deletions(-) diff --git a/scan/graphql_schema.json b/scan/graphql_schema.json index 44eaf6a2e5..e68d61424c 100644 --- a/scan/graphql_schema.json +++ b/scan/graphql_schema.json @@ -216,123 +216,6 @@ "description": null, "fields": null }, - { - "inputFields": [ - { - "name": "_eq", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_gt", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_gte", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_in", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "description": null - }, - { - "name": "_is_null", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null - }, - { - "name": "_lt", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_lte", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_neq", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": null - }, - { - "name": "_nin", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "Int_comparison_exp", - "enumValues": null, - "description": "expression to compare columns of type Int. All fields are combined with logical 'AND'.", - "fields": null - }, { "inputFields": null, "kind": "SCALAR", @@ -2462,7 +2345,7 @@ "interfaces": null, "name": "accounts_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"accounts\"", + "description": "input type for incrementing integer columne in table \"accounts\"", "fields": null }, { @@ -2926,31 +2809,6 @@ "description": "ordering options when selecting data from \"accounts\"", "fields": null }, - { - "inputFields": [ - { - "name": "address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "accounts_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"accounts\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -3526,38 +3384,6 @@ }, "description": null }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "proposer", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, { "args": [ { @@ -3571,7 +3397,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "transactions_select_column", + "name": "packets_select_column", "ofType": null } } @@ -3609,7 +3435,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_order_by", + "name": "packets_order_by", "ofType": null } } @@ -3621,7 +3447,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -3629,7 +3455,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "transactions", + "name": "packets", "type": { "kind": "NON_NULL", "name": null, @@ -3641,7 +3467,213 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "transactions", + "name": "packets", + "ofType": null + } + } + } + }, + "description": "An array relationship" + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "packets_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "packets_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "packets_aggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "packets_aggregate", + "ofType": null + } + }, + "description": "An aggregated array relationship" + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "proposer", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "transactions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], + "isDeprecated": false, + "deprecationReason": null, + "name": "transactions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "transactions", "ofType": null } } @@ -4259,6 +4291,16 @@ }, "description": null }, + { + "name": "packets", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_bool_exp", + "ofType": null + }, + "description": null + }, { "name": "proposer", "defaultValue": null, @@ -4353,7 +4395,7 @@ "interfaces": null, "name": "blocks_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"blocks\"", + "description": "input type for incrementing integer columne in table \"blocks\"", "fields": null }, { @@ -4378,6 +4420,16 @@ }, "description": null }, + { + "name": "packets", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_arr_rel_insert_input", + "ofType": null + }, + "description": null + }, { "name": "proposer", "defaultValue": null, @@ -4768,6 +4820,16 @@ }, "description": null }, + { + "name": "packets_aggregate", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_aggregate_order_by", + "ofType": null + }, + "description": null + }, { "name": "proposer", "defaultValue": null, @@ -4817,31 +4879,6 @@ "description": "ordering options when selecting data from \"blocks\"", "fields": null }, - { - "inputFields": [ - { - "name": "height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "blocks_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"blocks\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -6370,7 +6407,7 @@ "interfaces": null, "name": "data_source_revisions_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"data_source_revisions\"", + "description": "input type for incrementing integer columne in table \"data_source_revisions\"", "fields": null }, { @@ -6962,45 +6999,6 @@ "description": "ordering options when selecting data from \"data_source_revisions\"", "fields": null }, - { - "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "data_source_revisions_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"data_source_revisions\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -8151,22 +8149,6 @@ }, "description": null }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "fee", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -9100,16 +9082,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -9224,7 +9196,7 @@ "interfaces": null, "name": "data_sources_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"data_sources\"", + "description": "input type for incrementing integer columne in table \"data_sources\"", "fields": null }, { @@ -9259,16 +9231,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -9359,18 +9321,6 @@ }, "description": null }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "fee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -9433,16 +9383,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -9513,18 +9453,6 @@ }, "description": null }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "fee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, { "args": [], "isDeprecated": false, @@ -9587,16 +9515,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -9821,16 +9739,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -9900,31 +9808,6 @@ "description": "ordering options when selecting data from \"data_sources\"", "fields": null }, - { - "inputFields": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "data_sources_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"data_sources\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -9944,12 +9827,6 @@ "name": "executable", "description": "column name" }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "fee", - "description": "column name" - }, { "isDeprecated": false, "deprecationReason": null, @@ -10000,16 +9877,6 @@ }, "description": null }, - { - "name": "fee", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - }, { "name": "id", "defaultValue": null, @@ -10342,12 +10209,6 @@ "name": "executable", "description": "column name" }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "fee", - "description": "column name" - }, { "isDeprecated": false, "deprecationReason": null, @@ -11519,45 +11380,6 @@ "description": "ordering options when selecting data from \"delegations\"", "fields": null }, - { - "inputFields": [ - { - "name": "delegator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "delegations_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"delegations\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -14125,31 +13947,6 @@ "description": "ordering options when selecting data from \"metadata\"", "fields": null }, - { - "inputFields": [ - { - "name": "key", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "metadata_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"metadata\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -14263,33 +14060,6 @@ }, "description": "delete data from the table: \"accounts\"" }, - { - "args": [ - { - "name": "address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_accounts_by_pk", - "type": { - "kind": "OBJECT", - "name": "accounts", - "ofType": null - }, - "description": "delete single row from the table: \"accounts\"" - }, { "args": [ { @@ -14317,33 +14087,6 @@ }, "description": "delete data from the table: \"blocks\"" }, - { - "args": [ - { - "name": "height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_blocks_by_pk", - "type": { - "kind": "OBJECT", - "name": "blocks", - "ofType": null - }, - "description": "delete single row from the table: \"blocks\"" - }, { "args": [ { @@ -14371,47 +14114,6 @@ }, "description": "delete data from the table: \"data_source_revisions\"" }, - { - "args": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_data_source_revisions_by_pk", - "type": { - "kind": "OBJECT", - "name": "data_source_revisions", - "ofType": null - }, - "description": "delete single row from the table: \"data_source_revisions\"" - }, { "args": [ { @@ -14439,33 +14141,6 @@ }, "description": "delete data from the table: \"data_sources\"" }, - { - "args": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_data_sources_by_pk", - "type": { - "kind": "OBJECT", - "name": "data_sources", - "ofType": null - }, - "description": "delete single row from the table: \"data_sources\"" - }, { "args": [ { @@ -14496,43 +14171,29 @@ { "args": [ { - "name": "delegator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "metadata_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_delegations_by_pk", + "name": "delete_metadata", "type": { "kind": "OBJECT", - "name": "delegations", + "name": "metadata_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"delegations\"" + "description": "delete data from the table: \"metadata\"" }, { "args": [ @@ -14544,7 +14205,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null } }, @@ -14553,40 +14214,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_metadata", + "name": "delete_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "metadata_mutation_response", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": "delete data from the table: \"metadata\"" + "description": "delete data from the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "key", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_metadata_by_pk", + "name": "delete_oracle_scripts", "type": { "kind": "OBJECT", - "name": "metadata", + "name": "oracle_scripts_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"metadata\"" + "description": "delete data from the table: \"oracle_scripts\"" }, { "args": [ @@ -14598,7 +14259,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "packets_bool_exp", "ofType": null } }, @@ -14607,40 +14268,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_script_codes", + "name": "delete_packets", "type": { "kind": "OBJECT", - "name": "oracle_script_codes_mutation_response", + "name": "packets_mutation_response", "ofType": null }, - "description": "delete data from the table: \"oracle_script_codes\"" + "description": "delete data from the table: \"packets\"" }, { "args": [ { - "name": "code_hash", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bytea", + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_script_codes_by_pk", + "name": "delete_raw_data_requests", "type": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"oracle_script_codes\"" + "description": "delete data from the table: \"raw_data_requests\"" }, { "args": [ @@ -14652,7 +14313,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "related_data_sources_bool_exp", "ofType": null } }, @@ -14661,54 +14322,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_script_revisions", + "name": "delete_related_data_sources", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": "delete data from the table: \"oracle_script_revisions\"" + "description": "delete data from the table: \"related_data_sources\"" }, { "args": [ { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "report_details_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_script_revisions_by_pk", + "name": "delete_report_details", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "report_details_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"oracle_script_revisions\"" + "description": "delete data from the table: \"report_details\"" }, { "args": [ @@ -14720,7 +14367,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "reports_bool_exp", "ofType": null } }, @@ -14729,40 +14376,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_scripts", + "name": "delete_reports", "type": { "kind": "OBJECT", - "name": "oracle_scripts_mutation_response", + "name": "reports_mutation_response", "ofType": null }, - "description": "delete data from the table: \"oracle_scripts\"" + "description": "delete data from the table: \"reports\"" }, { "args": [ { - "name": "id", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "requested_validators_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_oracle_scripts_by_pk", + "name": "delete_requested_validators", "type": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "requested_validators_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"oracle_scripts\"" + "description": "delete data from the table: \"requested_validators\"" }, { "args": [ @@ -14774,7 +14421,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", + "name": "requests_bool_exp", "ofType": null } }, @@ -14783,54 +14430,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_raw_data_requests", + "name": "delete_requests", "type": { "kind": "OBJECT", - "name": "raw_data_requests_mutation_response", + "name": "requests_mutation_response", "ofType": null }, - "description": "delete data from the table: \"raw_data_requests\"" + "description": "delete data from the table: \"requests\"" }, { "args": [ { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_raw_data_requests_by_pk", + "name": "delete_transactions", "type": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "transactions_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"raw_data_requests\"" + "description": "delete data from the table: \"transactions\"" }, { "args": [ @@ -14842,7 +14475,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "unbonding_delegations_bool_exp", "ofType": null } }, @@ -14851,54 +14484,40 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_related_data_sources", + "name": "delete_unbonding_delegations", "type": { "kind": "OBJECT", - "name": "related_data_sources_mutation_response", + "name": "unbonding_delegations_mutation_response", "ofType": null }, - "description": "delete data from the table: \"related_data_sources\"" + "description": "delete data from the table: \"unbonding_delegations\"" }, { "args": [ { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "oracle_script_id", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "validator_votes_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be deleted" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_related_data_sources_by_pk", + "name": "delete_validator_votes", "type": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "validator_votes_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"related_data_sources\"" + "description": "delete data from the table: \"validator_votes\"" }, { "args": [ @@ -14910,7 +14529,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", + "name": "validators_bool_exp", "ofType": null } }, @@ -14919,466 +14538,468 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_report_details", + "name": "delete_validators", "type": { "kind": "OBJECT", - "name": "report_details_mutation_response", + "name": "validators_mutation_response", "ofType": null }, - "description": "delete data from the table: \"report_details\"" + "description": "delete data from the table: \"validators\"" }, { "args": [ { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_insert_input", + "ofType": null + } + } } }, - "description": null + "description": "the rows to be inserted" }, { - "name": "validator", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "accounts_on_conflict", + "ofType": null }, - "description": null + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_report_details_by_pk", + "name": "insert_accounts", "type": { "kind": "OBJECT", - "name": "report_details", + "name": "accounts_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"report_details\"" + "description": "insert data into the table: \"accounts\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_reports", + "name": "insert_blocks", "type": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "blocks_mutation_response", "ofType": null }, - "description": "delete data from the table: \"reports\"" + "description": "insert data into the table: \"blocks\"" }, { "args": [ { - "name": "request_id", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_insert_input", + "ofType": null + } + } } }, - "description": null + "description": "the rows to be inserted" }, { - "name": "validator", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_on_conflict", + "ofType": null }, - "description": null + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_reports_by_pk", + "name": "insert_data_source_revisions", "type": { "kind": "OBJECT", - "name": "reports", + "name": "data_source_revisions_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"reports\"" + "description": "insert data into the table: \"data_source_revisions\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "data_sources_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_requested_validators", + "name": "insert_data_sources", "type": { "kind": "OBJECT", - "name": "requested_validators_mutation_response", + "name": "data_sources_mutation_response", "ofType": null }, - "description": "delete data from the table: \"requested_validators\"" + "description": "insert data into the table: \"data_sources\"" }, { "args": [ { - "name": "request_id", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "delegations_insert_input", + "ofType": null + } + } } }, - "description": null + "description": "the rows to be inserted" }, { - "name": "validator_address", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "delegations_on_conflict", + "ofType": null }, - "description": null + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_requested_validators_by_pk", + "name": "insert_delegations", "type": { "kind": "OBJECT", - "name": "requested_validators", + "name": "delegations_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"requested_validators\"" + "description": "insert data into the table: \"delegations\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_requests", - "type": { - "kind": "OBJECT", - "name": "requests_mutation_response", - "ofType": null - }, - "description": "delete data from the table: \"requests\"" - }, - { - "args": [ + "description": "the rows to be inserted" + }, { - "name": "id", + "name": "on_conflict", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "metadata_on_conflict", + "ofType": null }, - "description": null + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_requests_by_pk", + "name": "insert_metadata", "type": { "kind": "OBJECT", - "name": "requests", + "name": "metadata_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"requests\"" + "description": "insert data into the table: \"metadata\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_transactions", + "name": "insert_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "transactions_mutation_response", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": "delete data from the table: \"transactions\"" + "description": "insert data into the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "tx_hash", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_insert_input", + "ofType": null + } + } } }, - "description": null + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_transactions_by_pk", + "name": "insert_oracle_scripts", "type": { "kind": "OBJECT", - "name": "transactions", + "name": "oracle_scripts_mutation_response", "ofType": null }, - "description": "delete single row from the table: \"transactions\"" + "description": "insert data into the table: \"oracle_scripts\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "packets_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_unbonding_delegations", + "name": "insert_packets", "type": { "kind": "OBJECT", - "name": "unbonding_delegations_mutation_response", + "name": "packets_mutation_response", "ofType": null }, - "description": "delete data from the table: \"unbonding_delegations\"" + "description": "insert data into the table: \"packets\"" }, { "args": [ { - "name": "where", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_insert_input", + "ofType": null + } + } } }, - "description": "filter the rows which have to be deleted" + "description": "the rows to be inserted" + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_on_conflict", + "ofType": null + }, + "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "delete_validator_votes", + "name": "insert_raw_data_requests", "type": { "kind": "OBJECT", - "name": "validator_votes_mutation_response", + "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": "delete data from the table: \"validator_votes\"" + "description": "insert data into the table: \"raw_data_requests\"" }, { "args": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "consensus_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_validator_votes_by_pk", - "type": { - "kind": "OBJECT", - "name": "validator_votes", - "ofType": null - }, - "description": "delete single row from the table: \"validator_votes\"" - }, - { - "args": [ - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be deleted" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_validators", - "type": { - "kind": "OBJECT", - "name": "validators_mutation_response", - "ofType": null - }, - "description": "delete data from the table: \"validators\"" - }, - { - "args": [ - { - "name": "operator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "delete_validators_by_pk", - "type": { - "kind": "OBJECT", - "name": "validators", - "ofType": null - }, - "description": "delete single row from the table: \"validators\"" - }, - { - "args": [ - { - "name": "objects", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -15391,7 +15012,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "accounts_insert_input", + "name": "related_data_sources_insert_input", "ofType": null } } @@ -15404,7 +15025,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_on_conflict", + "name": "related_data_sources_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15412,36 +15033,44 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_accounts", + "name": "insert_related_data_sources", "type": { "kind": "OBJECT", - "name": "accounts_mutation_response", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": "insert data into the table: \"accounts\"" + "description": "insert data into the table: \"related_data_sources\"" }, { "args": [ { - "name": "object", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "accounts_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "report_details_insert_input", + "ofType": null + } + } } }, - "description": "the row to be inserted" + "description": "the rows to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_on_conflict", + "name": "report_details_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15449,13 +15078,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_accounts_one", + "name": "insert_report_details", "type": { "kind": "OBJECT", - "name": "accounts", + "name": "report_details_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"accounts\"" + "description": "insert data into the table: \"report_details\"" }, { "args": [ @@ -15473,7 +15102,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_insert_input", + "name": "reports_insert_input", "ofType": null } } @@ -15486,7 +15115,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_on_conflict", + "name": "reports_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15494,36 +15123,44 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_blocks", + "name": "insert_reports", "type": { "kind": "OBJECT", - "name": "blocks_mutation_response", + "name": "reports_mutation_response", "ofType": null }, - "description": "insert data into the table: \"blocks\"" + "description": "insert data into the table: \"reports\"" }, { "args": [ { - "name": "object", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "blocks_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requested_validators_insert_input", + "ofType": null + } + } } }, - "description": "the row to be inserted" + "description": "the rows to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_on_conflict", + "name": "requested_validators_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15531,13 +15168,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_blocks_one", + "name": "insert_requested_validators", "type": { "kind": "OBJECT", - "name": "blocks", + "name": "requested_validators_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"blocks\"" + "description": "insert data into the table: \"requested_validators\"" }, { "args": [ @@ -15555,7 +15192,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_insert_input", + "name": "requests_insert_input", "ofType": null } } @@ -15568,7 +15205,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_on_conflict", + "name": "requests_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15576,36 +15213,44 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_source_revisions", + "name": "insert_requests", "type": { "kind": "OBJECT", - "name": "data_source_revisions_mutation_response", + "name": "requests_mutation_response", "ofType": null }, - "description": "insert data into the table: \"data_source_revisions\"" + "description": "insert data into the table: \"requests\"" }, { "args": [ { - "name": "object", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "transactions_insert_input", + "ofType": null + } + } } }, - "description": "the row to be inserted" + "description": "the rows to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_source_revisions_on_conflict", + "name": "transactions_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15613,13 +15258,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_source_revisions_one", + "name": "insert_transactions", "type": { "kind": "OBJECT", - "name": "data_source_revisions", + "name": "transactions_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"data_source_revisions\"" + "description": "insert data into the table: \"transactions\"" }, { "args": [ @@ -15637,57 +15282,55 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "data_sources_insert_input", + "name": "unbonding_delegations_insert_input", "ofType": null } } } }, "description": "the rows to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_on_conflict", - "ofType": null - }, - "description": "on conflict condition" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_sources", + "name": "insert_unbonding_delegations", "type": { "kind": "OBJECT", - "name": "data_sources_mutation_response", + "name": "unbonding_delegations_mutation_response", "ofType": null }, - "description": "insert data into the table: \"data_sources\"" + "description": "insert data into the table: \"unbonding_delegations\"" }, { "args": [ { - "name": "object", + "name": "objects", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "validator_votes_insert_input", + "ofType": null + } + } } }, - "description": "the row to be inserted" + "description": "the rows to be inserted" }, { "name": "on_conflict", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "data_sources_on_conflict", + "name": "validator_votes_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15695,13 +15338,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_data_sources_one", + "name": "insert_validator_votes", "type": { "kind": "OBJECT", - "name": "data_sources", + "name": "validator_votes_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"data_sources\"" + "description": "insert data into the table: \"validator_votes\"" }, { "args": [ @@ -15719,7 +15362,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "delegations_insert_input", + "name": "validators_insert_input", "ofType": null } } @@ -15732,7 +15375,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_on_conflict", + "name": "validators_on_conflict", "ofType": null }, "description": "on conflict condition" @@ -15740,1197 +15383,817 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_delegations", + "name": "insert_validators", "type": { "kind": "OBJECT", - "name": "delegations_mutation_response", + "name": "validators_mutation_response", "ofType": null }, - "description": "insert data into the table: \"delegations\"" + "description": "insert data into the table: \"validators\"" }, { "args": [ { - "name": "object", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_insert_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "accounts_inc_input", + "ofType": null }, - "description": "the row to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "delegations_on_conflict", + "name": "accounts_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "accounts_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_delegations_one", + "name": "update_accounts", "type": { "kind": "OBJECT", - "name": "delegations", + "name": "accounts_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"delegations\"" + "description": "update data of the table: \"accounts\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "blocks_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "metadata_on_conflict", + "name": "blocks_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "blocks_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_metadata", + "name": "update_blocks", "type": { "kind": "OBJECT", - "name": "metadata_mutation_response", + "name": "blocks_mutation_response", "ofType": null }, - "description": "insert data into the table: \"metadata\"" + "description": "update data of the table: \"blocks\"" }, { "args": [ { - "name": "object", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_insert_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_inc_input", + "ofType": null }, - "description": "the row to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "metadata_on_conflict", + "name": "data_source_revisions_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_source_revisions_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_metadata_one", + "name": "update_data_source_revisions", "type": { "kind": "OBJECT", - "name": "metadata", + "name": "data_source_revisions_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"metadata\"" + "description": "update data of the table: \"data_source_revisions\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "data_sources_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_on_conflict", + "name": "data_sources_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "data_sources_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_script_codes", + "name": "update_data_sources", "type": { "kind": "OBJECT", - "name": "oracle_script_codes_mutation_response", + "name": "data_sources_mutation_response", "ofType": null }, - "description": "insert data into the table: \"oracle_script_codes\"" + "description": "update data of the table: \"data_sources\"" }, { "args": [ { - "name": "object", + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "delegations_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_insert_input", + "name": "delegations_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_script_codes_one", + "name": "update_delegations", "type": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "delegations_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"oracle_script_codes\"" + "description": "update data of the table: \"delegations\"" }, { "args": [ { - "name": "objects", + "name": "_set", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "metadata_set_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "sets the columns of the filtered rows to the given values" }, { - "name": "on_conflict", + "name": "where", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "metadata_bool_exp", + "ofType": null + } }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_script_revisions", + "name": "update_metadata", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "metadata_mutation_response", "ofType": null }, - "description": "insert data into the table: \"oracle_script_revisions\"" + "description": "update data of the table: \"metadata\"" }, { "args": [ { - "name": "object", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_inc_input", + "ofType": null }, - "description": "the row to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", + "name": "oracle_script_revisions_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_script_revisions_one", + "name": "update_oracle_script_revisions", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_script_revisions_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"oracle_script_revisions\"" + "description": "update data of the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", + "name": "oracle_scripts_set_input", "ofType": null }, - "description": "on conflict condition" + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_oracle_scripts", + "name": "update_oracle_scripts", "type": { "kind": "OBJECT", "name": "oracle_scripts_mutation_response", "ofType": null }, - "description": "insert data into the table: \"oracle_scripts\"" + "description": "update data of the table: \"oracle_scripts\"" }, { "args": [ { - "name": "object", + "name": "_append", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "packets_append_input", + "ofType": null }, - "description": "the row to be inserted" + "description": "append existing jsonb value of filtered columns with new jsonb value" }, { - "name": "on_conflict", + "name": "_delete_at_path", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", + "name": "packets_delete_at_path_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_oracle_scripts_one", - "type": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null - }, - "description": "insert a single row into the table: \"oracle_scripts\"" - }, - { - "args": [ + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" + }, { - "name": "objects", + "name": "_delete_elem", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "packets_delete_elem_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" }, { - "name": "on_conflict", + "name": "_delete_key", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_on_conflict", + "name": "packets_delete_key_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_raw_data_requests", - "type": { - "kind": "OBJECT", - "name": "raw_data_requests_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"raw_data_requests\"" - }, - { - "args": [ + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" + }, { - "name": "object", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_insert_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "packets_inc_input", + "ofType": null }, - "description": "the row to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_prepend", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "raw_data_requests_on_conflict", + "name": "packets_prepend_input", "ofType": null }, - "description": "on conflict condition" + "description": "prepend existing jsonb value of filtered columns with new jsonb value" + }, + { + "name": "_set", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "packets_set_input", + "ofType": null + }, + "description": "sets the columns of the filtered rows to the given values" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "packets_bool_exp", + "ofType": null + } + }, + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_raw_data_requests_one", + "name": "update_packets", "type": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "packets_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"raw_data_requests\"" + "description": "update data of the table: \"packets\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "raw_data_requests_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_on_conflict", + "name": "raw_data_requests_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_related_data_sources", - "type": { - "kind": "OBJECT", - "name": "related_data_sources_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"related_data_sources\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_insert_input", + "name": "raw_data_requests_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_related_data_sources_one", + "name": "update_raw_data_requests", "type": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "raw_data_requests_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"related_data_sources\"" + "description": "update data of the table: \"raw_data_requests\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "related_data_sources_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "report_details_on_conflict", + "name": "related_data_sources_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_report_details", - "type": { - "kind": "OBJECT", - "name": "report_details_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"report_details\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "report_details_insert_input", + "name": "related_data_sources_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_report_details_one", + "name": "update_related_data_sources", "type": { "kind": "OBJECT", - "name": "report_details", + "name": "related_data_sources_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"report_details\"" + "description": "update data of the table: \"related_data_sources\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "report_details_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", + "name": "report_details_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_reports", - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"reports\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "reports_insert_input", + "name": "report_details_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_reports_one", + "name": "update_report_details", "type": { "kind": "OBJECT", - "name": "reports", + "name": "report_details_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"reports\"" + "description": "update data of the table: \"report_details\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "reports_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requested_validators_on_conflict", + "name": "reports_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_requested_validators", - "type": { - "kind": "OBJECT", - "name": "requested_validators_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"requested_validators\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requested_validators_insert_input", + "name": "reports_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_requested_validators_one", + "name": "update_reports", "type": { "kind": "OBJECT", - "name": "requested_validators", + "name": "reports_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"requested_validators\"" + "description": "update data of the table: \"reports\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "requested_validators_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_on_conflict", + "name": "requested_validators_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_requests", - "type": { - "kind": "OBJECT", - "name": "requests_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"requests\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "requests_insert_input", + "name": "requested_validators_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_requests_one", + "name": "update_requested_validators", "type": { "kind": "OBJECT", - "name": "requests", + "name": "requested_validators_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"requests\"" + "description": "update data of the table: \"requested_validators\"" }, { "args": [ { - "name": "objects", + "name": "_inc", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "requests_inc_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "increments the integer columns with given value of the filtered values" }, { - "name": "on_conflict", + "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_on_conflict", + "name": "requests_set_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_transactions", - "type": { - "kind": "OBJECT", - "name": "transactions_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"transactions\"" - }, - { - "args": [ + "description": "sets the columns of the filtered rows to the given values" + }, { - "name": "object", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_insert_input", + "name": "requests_bool_exp", "ofType": null } }, - "description": "the row to be inserted" - }, - { - "name": "on_conflict", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_on_conflict", - "ofType": null - }, - "description": "on conflict condition" + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "insert_transactions_one", + "name": "update_requests", "type": { "kind": "OBJECT", - "name": "transactions", + "name": "requests_mutation_response", "ofType": null }, - "description": "insert a single row into the table: \"transactions\"" + "description": "update data of the table: \"requests\"" }, { "args": [ { - "name": "objects", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_insert_input", - "ofType": null - } - } - } - }, - "description": "the rows to be inserted" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_unbonding_delegations", - "type": { - "kind": "OBJECT", - "name": "unbonding_delegations_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"unbonding_delegations\"" - }, - { - "args": [ - { - "name": "object", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_insert_input", - "ofType": null - } - }, - "description": "the row to be inserted" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_unbonding_delegations_one", - "type": { - "kind": "OBJECT", - "name": "unbonding_delegations", - "ofType": null - }, - "description": "insert a single row into the table: \"unbonding_delegations\"" - }, - { - "args": [ - { - "name": "objects", + "name": "_append", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_insert_input", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "transactions_append_input", + "ofType": null }, - "description": "the rows to be inserted" + "description": "append existing jsonb value of filtered columns with new jsonb value" }, { - "name": "on_conflict", + "name": "_delete_at_path", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validator_votes_on_conflict", + "name": "transactions_delete_at_path_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_validator_votes", - "type": { - "kind": "OBJECT", - "name": "validator_votes_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"validator_votes\"" - }, - { - "args": [ - { - "name": "object", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_insert_input", - "ofType": null - } - }, - "description": "the row to be inserted" + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" }, { - "name": "on_conflict", + "name": "_delete_elem", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validator_votes_on_conflict", + "name": "transactions_delete_elem_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_validator_votes_one", - "type": { - "kind": "OBJECT", - "name": "validator_votes", - "ofType": null - }, - "description": "insert a single row into the table: \"validator_votes\"" - }, - { - "args": [ - { - "name": "objects", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_insert_input", - "ofType": null - } - } - } - }, - "description": "the rows to be inserted" + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" }, { - "name": "on_conflict", + "name": "_delete_key", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_on_conflict", + "name": "transactions_delete_key_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_validators", - "type": { - "kind": "OBJECT", - "name": "validators_mutation_response", - "ofType": null - }, - "description": "insert data into the table: \"validators\"" - }, - { - "args": [ - { - "name": "object", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_insert_input", - "ofType": null - } - }, - "description": "the row to be inserted" + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" }, { - "name": "on_conflict", + "name": "_inc", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "validators_on_conflict", + "name": "transactions_inc_input", "ofType": null }, - "description": "on conflict condition" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "insert_validators_one", - "type": { - "kind": "OBJECT", - "name": "validators", - "ofType": null - }, - "description": "insert a single row into the table: \"validators\"" - }, - { - "args": [ + "description": "increments the integer columns with given value of the filtered values" + }, { - "name": "_inc", + "name": "_prepend", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_inc_input", + "name": "transactions_prepend_input", "ofType": null }, - "description": "increments the integer columns with given value of the filtered values" + "description": "prepend existing jsonb value of filtered columns with new jsonb value" }, { "name": "_set", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_set_input", + "name": "transactions_set_input", "ofType": null }, "description": "sets the columns of the filtered rows to the given values" @@ -16943,7 +16206,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "accounts_bool_exp", + "name": "transactions_bool_exp", "ofType": null } }, @@ -16952,13 +16215,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "update_accounts", + "name": "update_transactions", "type": { "kind": "OBJECT", - "name": "accounts_mutation_response", + "name": "transactions_mutation_response", "ofType": null }, - "description": "update data of the table: \"accounts\"" + "description": "update data of the table: \"transactions\"" }, { "args": [ @@ -16967,7 +16230,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_inc_input", + "name": "unbonding_delegations_inc_input", "ofType": null }, "description": "increments the integer columns with given value of the filtered values" @@ -16977,35 +16240,35 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "accounts_set_input", + "name": "unbonding_delegations_set_input", "ofType": null }, "description": "sets the columns of the filtered rows to the given values" }, { - "name": "pk_columns", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "accounts_pk_columns_input", + "name": "unbonding_delegations_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_accounts_by_pk", + "name": "update_unbonding_delegations", "type": { "kind": "OBJECT", - "name": "accounts", + "name": "unbonding_delegations_mutation_response", "ofType": null }, - "description": "update single row of the table: \"accounts\"" + "description": "update data of the table: \"unbonding_delegations\"" }, { "args": [ @@ -17014,7 +16277,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_inc_input", + "name": "validator_votes_inc_input", "ofType": null }, "description": "increments the integer columns with given value of the filtered values" @@ -17024,7 +16287,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_set_input", + "name": "validator_votes_set_input", "ofType": null }, "description": "sets the columns of the filtered rows to the given values" @@ -17037,7 +16300,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_bool_exp", + "name": "validator_votes_bool_exp", "ofType": null } }, @@ -17046,13 +16309,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "update_blocks", + "name": "update_validator_votes", "type": { "kind": "OBJECT", - "name": "blocks_mutation_response", + "name": "validator_votes_mutation_response", "ofType": null }, - "description": "update data of the table: \"blocks\"" + "description": "update data of the table: \"validator_votes\"" }, { "args": [ @@ -17061,7 +16324,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_inc_input", + "name": "validators_inc_input", "ofType": null }, "description": "increments the integer columns with given value of the filtered values" @@ -17071,1744 +16334,1329 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "blocks_set_input", + "name": "validators_set_input", "ofType": null }, "description": "sets the columns of the filtered rows to the given values" }, { - "name": "pk_columns", + "name": "where", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "blocks_pk_columns_input", + "name": "validators_bool_exp", "ofType": null } }, - "description": null + "description": "filter the rows which have to be updated" } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_blocks_by_pk", + "name": "update_validators", "type": { "kind": "OBJECT", - "name": "blocks", + "name": "validators_mutation_response", + "ofType": null + }, + "description": "update data of the table: \"validators\"" + } + ] + }, + { + "inputFields": null, + "kind": "SCALAR", + "possibleTypes": null, + "interfaces": null, + "name": "numeric", + "enumValues": null, + "description": null, + "fields": null + }, + { + "inputFields": [ + { + "name": "_eq", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "description": "update single row of the table: \"blocks\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_data_source_revisions", + "name": "_gt", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "data_source_revisions_mutation_response", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "description": "update data of the table: \"data_source_revisions\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_source_revisions_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_data_source_revisions_by_pk", + "name": "_gte", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "data_source_revisions", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "description": "update single row of the table: \"data_source_revisions\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_set_input", + "name": "_in", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + } } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_data_sources", + }, + "description": null + }, + { + "name": "_is_null", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "data_sources_mutation_response", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "description": "update data of the table: \"data_sources\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "data_sources_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "data_sources_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_data_sources_by_pk", + "name": "_lt", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "data_sources", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "description": "update single row of the table: \"data_sources\"" + "description": null }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_delegations", + "name": "_lte", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "delegations_mutation_response", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "description": "update data of the table: \"delegations\"" + "description": null }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "delegations_set_input", + "name": "_neq", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "description": null + }, + { + "name": "_nin", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "delegations_pk_columns_input", - "ofType": null - } - }, - "description": null + } } - ], + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "numeric_comparison_exp", + "enumValues": null, + "description": "expression to compare columns of type numeric. All fields are combined with logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions", + "enumValues": null, + "description": "columns and relationships of \"oracle_script_revisions\"", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_delegations_by_pk", + "name": "block_height", "type": { - "kind": "OBJECT", - "name": "delegations", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "update single row of the table: \"delegations\"" + "description": null }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "description": null + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_metadata", + "name": "oracle_script", "type": { - "kind": "OBJECT", - "name": "metadata_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_scripts", + "ofType": null + } }, - "description": "update data of the table: \"metadata\"" + "description": "An object relationship" }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "metadata_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "metadata_pk_columns_input", - "ofType": null - } - }, - "description": null + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null } - ], + }, + "description": null + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_metadata_by_pk", + "name": "revision_number", "type": { - "kind": "OBJECT", - "name": "metadata", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "description": "update single row of the table: \"metadata\"" + "description": null }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null } - ], + }, + "description": null + }, + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_script_codes", + "name": "transaction", "type": { "kind": "OBJECT", - "name": "oracle_script_codes_mutation_response", + "name": "transactions", "ofType": null }, - "description": "update data of the table: \"oracle_script_codes\"" + "description": "An object relationship" }, { - "args": [ - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_aggregate", + "enumValues": null, + "description": "aggregated selection of \"oracle_script_revisions\"", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_script_codes_by_pk", + "name": "aggregate", "type": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "oracle_script_revisions_aggregate_fields", "ofType": null }, - "description": "update single row of the table: \"oracle_script_codes\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "kind": "OBJECT", + "name": "oracle_script_revisions", "ofType": null } - }, - "description": "filter the rows which have to be updated" + } } - ], + }, + "description": null + } + ] + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_aggregate_fields", + "enumValues": null, + "description": "aggregate fields of \"oracle_script_revisions\"", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_script_revisions", + "name": "avg", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_mutation_response", + "name": "oracle_script_revisions_avg_fields", "ofType": null }, - "description": "update data of the table: \"oracle_script_revisions\"" + "description": null }, { "args": [ { - "name": "_inc", + "name": "columns", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_inc_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } }, - "description": "increments the integer columns with given value of the filtered values" + "description": null }, { - "name": "_set", + "name": "distinct", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_set_input", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_pk_columns_input", - "ofType": null - } - }, "description": null } ], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_script_revisions_by_pk", + "name": "count", "type": { - "kind": "OBJECT", - "name": "oracle_script_revisions", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "description": "update single row of the table: \"oracle_script_revisions\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_scripts", + "name": "max", "type": { "kind": "OBJECT", - "name": "oracle_scripts_mutation_response", + "name": "oracle_script_revisions_max_fields", "ofType": null }, - "description": "update data of the table: \"oracle_scripts\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_oracle_scripts_by_pk", + "name": "min", "type": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "oracle_script_revisions_min_fields", "ofType": null }, - "description": "update single row of the table: \"oracle_scripts\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_raw_data_requests", + "name": "stddev", "type": { "kind": "OBJECT", - "name": "raw_data_requests_mutation_response", + "name": "oracle_script_revisions_stddev_fields", "ofType": null }, - "description": "update data of the table: \"raw_data_requests\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "raw_data_requests_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_raw_data_requests_by_pk", + "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "raw_data_requests", + "name": "oracle_script_revisions_stddev_pop_fields", "ofType": null }, - "description": "update single row of the table: \"raw_data_requests\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_related_data_sources", + "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "related_data_sources_mutation_response", + "name": "oracle_script_revisions_stddev_samp_fields", "ofType": null }, - "description": "update data of the table: \"related_data_sources\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_related_data_sources_by_pk", + "name": "sum", "type": { "kind": "OBJECT", - "name": "related_data_sources", + "name": "oracle_script_revisions_sum_fields", "ofType": null }, - "description": "update single row of the table: \"related_data_sources\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_report_details", + "name": "var_pop", "type": { "kind": "OBJECT", - "name": "report_details_mutation_response", + "name": "oracle_script_revisions_var_pop_fields", "ofType": null }, - "description": "update data of the table: \"report_details\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "report_details_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "report_details_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_report_details_by_pk", + "name": "var_samp", "type": { "kind": "OBJECT", - "name": "report_details", + "name": "oracle_script_revisions_var_samp_fields", "ofType": null }, - "description": "update single row of the table: \"report_details\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_reports", + "name": "variance", "type": { "kind": "OBJECT", - "name": "reports_mutation_response", + "name": "oracle_script_revisions_variance_fields", "ofType": null }, - "description": "update data of the table: \"reports\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "avg", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_avg_order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_reports_by_pk", + "name": "count", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "reports", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "description": "update single row of the table: \"reports\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_requested_validators", + "name": "max", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators_mutation_response", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_max_order_by", "ofType": null }, - "description": "update data of the table: \"requested_validators\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requested_validators_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_requested_validators_by_pk", + "name": "min", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requested_validators", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_min_order_by", "ofType": null }, - "description": "update single row of the table: \"requested_validators\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_requests", + "name": "stddev", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requests_mutation_response", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_order_by", "ofType": null }, - "description": "update data of the table: \"requests\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "update_requests_by_pk", + "name": "stddev_pop", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "requests", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_pop_order_by", "ofType": null }, - "description": "update single row of the table: \"requests\"" + "description": null }, { - "args": [ - { - "name": "_append", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_append_input", - "ofType": null - }, - "description": "append existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_delete_at_path", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_at_path_input", - "ofType": null - }, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" - }, - { - "name": "_delete_elem", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_elem_input", - "ofType": null - }, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" - }, - { - "name": "_delete_key", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_key_input", - "ofType": null - }, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" - }, - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_prepend", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_prepend_input", - "ofType": null - }, - "description": "prepend existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { + "name": "stddev_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_stddev_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "sum", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_sum_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_pop", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_var_pop_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "var_samp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_var_samp_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "variance", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_variance_order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_aggregate_order_by", + "enumValues": null, + "description": "order by aggregate values of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "oracle_script_revisions_insert_input", "ofType": null } - }, - "description": "filter the rows which have to be updated" + } } - ], + }, + "description": null + }, + { + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_arr_rel_insert_input", + "enumValues": null, + "description": "input type for inserting array relation for remote table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_avg_fields", + "enumValues": null, + "description": "aggregate avg on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_transactions", + "name": "block_height", "type": { - "kind": "OBJECT", - "name": "transactions_mutation_response", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "update data of the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "_append", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_append_input", - "ofType": null - }, - "description": "append existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_delete_at_path", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_at_path_input", - "ofType": null - }, - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)" - }, - { - "name": "_delete_elem", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_elem_input", - "ofType": null - }, - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array" - }, - { - "name": "_delete_key", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_delete_key_input", - "ofType": null - }, - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value" - }, - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_prepend", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_prepend_input", - "ofType": null - }, - "description": "prepend existing jsonb value of filtered columns with new jsonb value" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "transactions_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_transactions_by_pk", + "name": "oracle_script_id", "type": { - "kind": "OBJECT", - "name": "transactions", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "update single row of the table: \"transactions\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "unbonding_delegations_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_unbonding_delegations", + "name": "revision_number", "type": { - "kind": "OBJECT", - "name": "unbonding_delegations_mutation_response", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "update data of the table: \"unbonding_delegations\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_validator_votes", + "name": "timestamp", "type": { - "kind": "OBJECT", - "name": "validator_votes_mutation_response", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "description": "update data of the table: \"validator_votes\"" + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validator_votes_pk_columns_input", - "ofType": null - } - }, - "description": null + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_avg_order_by", + "enumValues": null, + "description": "order by avg() on columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "_and", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null } - ], + }, + "description": null + }, + { + "name": "_not", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "_or", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + } + }, + "description": null + }, + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_bool_exp", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bytea_comparison_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_bool_exp", + "enumValues": null, + "description": "Boolean expression to filter rows from the table \"oracle_script_revisions\". All fields are combined with a logical 'AND'.", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_constraint", + "enumValues": [ + { "isDeprecated": false, "deprecationReason": null, - "name": "update_validator_votes_by_pk", + "name": "oracle_script_revisions_pkey", + "description": "unique or primary key constraint" + } + ], + "description": "unique or primary key constraints on table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, "type": { - "kind": "OBJECT", - "name": "validator_votes", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "update single row of the table: \"validator_votes\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_bool_exp", - "ofType": null - } - }, - "description": "filter the rows which have to be updated" - } - ], + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_inc_input", + "enumValues": null, + "description": "input type for incrementing integer columne in table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_insert_input", + "enumValues": null, + "description": "input type for inserting data into table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_max_fields", + "enumValues": null, + "description": "aggregate max on columns", + "fields": [ + { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_validators", + "name": "block_height", "type": { - "kind": "OBJECT", - "name": "validators_mutation_response", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "update data of the table: \"validators\"" + "description": null }, { - "args": [ - { - "name": "_inc", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_inc_input", - "ofType": null - }, - "description": "increments the integer columns with given value of the filtered values" - }, - { - "name": "_set", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "validators_set_input", - "ofType": null - }, - "description": "sets the columns of the filtered rows to the given values" - }, - { - "name": "pk_columns", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "validators_pk_columns_input", - "ofType": null - } - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "update_validators_by_pk", + "name": "name", "type": { - "kind": "OBJECT", - "name": "validators", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "description": "update single row of the table: \"validators\"" + "description": null } ] }, { - "inputFields": null, - "kind": "SCALAR", + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "numeric", + "name": "oracle_script_revisions_max_order_by", "enumValues": null, - "description": null, + "description": "order by max() on columns of table \"oracle_script_revisions\"", "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_min_fields", + "enumValues": null, + "description": "aggregate min on columns", + "fields": [ { - "name": "_eq", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "_gt", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "name", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "description": null }, { - "name": "_gte", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "_in", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "_is_null", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "_lt", + "name": "name", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "_lte", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "_neq", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "_nin", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null } @@ -18816,9 +17664,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "numeric_comparison_exp", + "name": "oracle_script_revisions_min_order_by", "enumValues": null, - "description": "expression to compare columns of type numeric. All fields are combined with logical 'AND'.", + "description": "order by min() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -18826,110 +17674,106 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_codes", + "name": "oracle_script_revisions_mutation_response", "enumValues": null, - "description": "columns and relationships of \"oracle_script_codes\"", + "description": "response of any mutation on the table \"oracle_script_revisions\"", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "code_hash", + "name": "affected_rows", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "Int", "ofType": null } }, - "description": null + "description": "number of affected rows by the mutation" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "code_text", + "name": "returning", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } + }, + "description": "data of the affected rows by the mutation" + } + ] + }, + { + "inputFields": [ + { + "name": "data", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_insert_input", + "ofType": null + } }, "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" + "name": "on_conflict", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_on_conflict", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_obj_rel_insert_input", + "enumValues": null, + "description": "input type for inserting object relation for remote table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "constraint", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_constraint", + "ofType": null } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_scripts", + }, + "description": null + }, + { + "name": "update_columns", + "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, @@ -18940,129 +17784,260 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", + "kind": "ENUM", + "name": "oracle_script_revisions_update_column", "ofType": null } } } }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_scripts_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_on_conflict", + "enumValues": null, + "description": "on conflict condition type for table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "name", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_scripts_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "transaction", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "transactions_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_order_by", + "enumValues": null, + "description": "ordering options when selecting data from \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "ENUM", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_select_column", + "enumValues": [ + { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_aggregate", + "name": "block_height", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + } + ], + "description": "select columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, - "description": "An aggregated array relationship" + "description": null }, { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "schema", + "name": "name", + "defaultValue": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "tx_hash", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + }, + "description": null } - ] + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_set_input", + "enumValues": null, + "description": "input type for updating data in table \"oracle_script_revisions\"", + "fields": null }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_codes_aggregate", + "name": "oracle_script_revisions_stddev_fields", "enumValues": null, - "description": "aggregated selection of \"oracle_script_codes\"", + "description": "aggregate stddev on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "aggregate", + "name": "block_height", "type": { - "kind": "OBJECT", - "name": "oracle_script_codes_aggregate_fields", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null @@ -19071,74 +18046,108 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "nodes", + "name": "oracle_script_id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_codes", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null } ] }, + { + "inputFields": [ + { + "name": "block_height", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_script_revisions_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"oracle_script_revisions\"", + "fields": null + }, { "inputFields": null, "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_codes_aggregate_fields", + "name": "oracle_script_revisions_stddev_pop_fields", "enumValues": null, - "description": "aggregate fields of \"oracle_script_codes\"", + "description": "aggregate stddev_pop on columns", "fields": [ { - "args": [ - { - "name": "columns", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_codes_select_column", - "ofType": null - } - } - }, - "description": null - }, - { - "name": "distinct", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "description": null - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "count", + "name": "block_height", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "description": null @@ -19147,10 +18156,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "max", + "name": "oracle_script_id", "type": { - "kind": "OBJECT", - "name": "oracle_script_codes_max_fields", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null @@ -19159,10 +18168,22 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "min", + "name": "revision_number", "type": { - "kind": "OBJECT", - "name": "oracle_script_codes_min_fields", + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null @@ -19172,7 +18193,7 @@ { "inputFields": [ { - "name": "count", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -19182,21 +18203,31 @@ "description": null }, { - "name": "max", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "min", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_min_order_by", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19205,41 +18236,108 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_aggregate_order_by", + "name": "oracle_script_revisions_stddev_pop_order_by", "enumValues": null, - "description": "order by aggregate values of table \"oracle_script_codes\"", + "description": "order by stddev_pop() on columns of table \"oracle_script_revisions\"", "fields": null }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_stddev_samp_fields", + "enumValues": null, + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + } + ] + }, { "inputFields": [ { - "name": "data", + "name": "block_height", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_insert_input", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "on_conflict", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_on_conflict", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19248,87 +18346,108 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_arr_rel_insert_input", + "name": "oracle_script_revisions_stddev_samp_order_by", "enumValues": null, - "description": "input type for inserting array relation for remote table \"oracle_script_codes\"", + "description": "order by stddev_samp() on columns of table \"oracle_script_revisions\"", "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_sum_fields", + "enumValues": null, + "description": "aggregate sum on columns", + "fields": [ { - "name": "_and", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "_not", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "_or", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "description": null }, { - "name": "code_hash", + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "block_height", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "code_text", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "oracle_scripts", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "schema", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19337,9 +18456,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_bool_exp", + "name": "oracle_script_revisions_sum_order_by", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"oracle_script_codes\". All fields are combined with a logical 'AND'.", + "description": "order by sum() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -19347,56 +18466,145 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_constraint", + "name": "oracle_script_revisions_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes_pkey", - "description": "unique or primary key constraint" + "name": "block_height", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "name", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "tx_hash", + "description": "column name" + } + ], + "description": "update columns of table \"oracle_script_revisions\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_script_revisions_var_pop_fields", + "enumValues": null, + "description": "aggregate var_pop on columns", + "fields": [ + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "oracle_script_id", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null } - ], - "description": "unique or primary key constraints on table \"oracle_script_codes\"", - "fields": null + ] }, { "inputFields": [ { - "name": "code_hash", + "name": "block_height", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bytea", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "code_text", + "name": "oracle_script_id", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "oracle_scripts", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_arr_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "schema", + "name": "timestamp", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -19405,9 +18613,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_insert_input", + "name": "oracle_script_revisions_var_pop_order_by", "enumValues": null, - "description": "input type for inserting data into table \"oracle_script_codes\"", + "description": "order by var_pop() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -19415,18 +18623,18 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_codes_max_fields", + "name": "oracle_script_revisions_var_samp_fields", "enumValues": null, - "description": "aggregate max on columns", + "description": "aggregate var_samp on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "code_text", + "name": "block_height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -19435,64 +18643,22 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "schema", + "name": "oracle_script_id", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "code_text", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "name": "Float", "ofType": null }, "description": null }, - { - "name": "schema", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_max_order_by", - "enumValues": null, - "description": "order by max() on columns of table \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_codes_min_fields", - "enumValues": null, - "description": "aggregate min on columns", - "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "code_text", + "name": "revision_number", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -19501,10 +18667,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "schema", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "description": null @@ -19514,7 +18680,7 @@ { "inputFields": [ { - "name": "code_text", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -19524,7 +18690,27 @@ "description": null }, { - "name": "schema", + "name": "oracle_script_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "timestamp", "defaultValue": null, "type": { "kind": "ENUM", @@ -19537,9 +18723,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_min_order_by", + "name": "oracle_script_revisions_var_samp_order_by", "enumValues": null, - "description": "order by min() on columns of table \"oracle_script_codes\"", + "description": "order by var_samp() on columns of table \"oracle_script_revisions\"", "fields": null }, { @@ -19547,148 +18733,64 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_codes_mutation_response", + "name": "oracle_script_revisions_variance_fields", "enumValues": null, - "description": "response of any mutation on the table \"oracle_script_codes\"", + "description": "aggregate variance on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "affected_rows", + "name": "block_height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "description": "number of affected rows by the mutation" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_codes", - "ofType": null - } - } - } - }, - "description": "data of the affected rows by the mutation" - } - ] - }, - { - "inputFields": [ - { - "name": "data", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_insert_input", - "ofType": null - } - }, - "description": null - }, - { - "name": "on_conflict", - "defaultValue": null, + "name": "oracle_script_id", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_on_conflict", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_obj_rel_insert_input", - "enumValues": null, - "description": "input type for inserting object relation for remote table \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "constraint", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_codes_constraint", - "ofType": null - } - }, - "description": null }, { - "name": "update_columns", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "revision_number", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_codes_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "description": null }, { - "name": "where", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "timestamp", "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_on_conflict", - "enumValues": null, - "description": "on conflict condition type for table \"oracle_script_codes\"", - "fields": null + ] }, { "inputFields": [ { - "name": "code_hash", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -19698,7 +18800,7 @@ "description": null }, { - "name": "code_text", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -19708,17 +18810,17 @@ "description": null }, { - "name": "oracle_scripts_aggregate", + "name": "revision_number", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "schema", + "name": "timestamp", "defaultValue": null, "type": { "kind": "ENUM", @@ -19731,165 +18833,263 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_codes_order_by", + "name": "oracle_script_revisions_variance_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"oracle_script_codes\"", + "description": "order by variance() on columns of table \"oracle_script_revisions\"", "fields": null }, { - "inputFields": [ + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts", + "enumValues": null, + "description": "columns and relationships of \"oracle_scripts\"", + "fields": [ { - "name": "code_hash", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "description", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "String", "ofType": null } }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_select_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "code_hash", - "description": "column name" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "code_text", - "description": "column name" }, { + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "schema", - "description": "column name" - } - ], - "description": "select columns of table \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": [ - { - "name": "code_hash", - "defaultValue": null, + "name": "id", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "name": "code_text", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "description": null }, { - "name": "schema", - "defaultValue": null, + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_set_input", - "enumValues": null, - "description": "input type for updating data in table \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_codes_update_column", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "code_hash", - "description": "column name" }, { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "code_text", - "description": "column name" + "name": "oracle_script_revisions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "oracle_script_revisions", + "ofType": null + } + } + } + }, + "description": "An array relationship" }, { + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "oracle_script_revisions_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "schema", - "description": "column name" - } - ], - "description": "update columns of table \"oracle_script_codes\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions", - "enumValues": null, - "description": "columns and relationships of \"oracle_script_revisions\"", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", + "name": "oracle_script_revisions_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "oracle_script_revisions_aggregate", "ofType": null } }, - "description": null + "description": "An aggregated array relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "owner", "type": { "kind": "NON_NULL", "name": null, @@ -19902,90 +19102,382 @@ "description": null }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script", + "name": "related_data_sources", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_scripts", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "related_data_sources", + "ofType": null + } + } } }, - "description": "An object relationship" + "description": "An array relationship" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "related_data_sources_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "related_data_sources_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "related_data_sources_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "related_data_sources_aggregate", "ofType": null } }, - "description": null + "description": "An aggregated array relationship" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "requests", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "requests", + "ofType": null + } + } } }, - "description": null + "description": "An array relationship" }, { - "args": [], + "args": [ + { + "name": "distinct_on", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "requests_select_column", + "ofType": null + } + } + }, + "description": "distinct select on columns" + }, + { + "name": "limit", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "limit the number of rows returned" + }, + { + "name": "offset", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": "skip the first n rows. Use only with order_by" + }, + { + "name": "order_by", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "requests_order_by", + "ofType": null + } + } + }, + "description": "sort the rows by one or more columns" + }, + { + "name": "where", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "requests_bool_exp", + "ofType": null + }, + "description": "filter the rows returned" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "requests_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "OBJECT", + "name": "requests_aggregate", "ofType": null } }, - "description": null + "description": "An aggregated array relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "transaction", + "name": "schema", "type": { - "kind": "OBJECT", - "name": "transactions", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "description": "An object relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "source_code_url", "type": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "description": null } @@ -19996,9 +19488,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_aggregate", + "name": "oracle_scripts_aggregate", "enumValues": null, - "description": "aggregated selection of \"oracle_script_revisions\"", + "description": "aggregated selection of \"oracle_scripts\"", "fields": [ { "args": [], @@ -20007,7 +19499,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate_fields", + "name": "oracle_scripts_aggregate_fields", "ofType": null }, "description": null @@ -20028,7 +19520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null } } @@ -20043,9 +19535,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_aggregate_fields", + "name": "oracle_scripts_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"oracle_script_revisions\"", + "description": "aggregate fields of \"oracle_scripts\"", "fields": [ { "args": [], @@ -20054,7 +19546,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_avg_fields", + "name": "oracle_scripts_avg_fields", "ofType": null }, "description": null @@ -20072,7 +19564,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -20107,7 +19599,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_max_fields", + "name": "oracle_scripts_max_fields", "ofType": null }, "description": null @@ -20119,7 +19611,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_min_fields", + "name": "oracle_scripts_min_fields", "ofType": null }, "description": null @@ -20131,7 +19623,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_fields", + "name": "oracle_scripts_stddev_fields", "ofType": null }, "description": null @@ -20143,7 +19635,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_pop_fields", + "name": "oracle_scripts_stddev_pop_fields", "ofType": null }, "description": null @@ -20155,7 +19647,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_stddev_samp_fields", + "name": "oracle_scripts_stddev_samp_fields", "ofType": null }, "description": null @@ -20167,7 +19659,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_sum_fields", + "name": "oracle_scripts_sum_fields", "ofType": null }, "description": null @@ -20179,7 +19671,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_var_pop_fields", + "name": "oracle_scripts_var_pop_fields", "ofType": null }, "description": null @@ -20191,7 +19683,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_var_samp_fields", + "name": "oracle_scripts_var_samp_fields", "ofType": null }, "description": null @@ -20203,7 +19695,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions_variance_fields", + "name": "oracle_scripts_variance_fields", "ofType": null }, "description": null @@ -20217,7 +19709,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_avg_order_by", + "name": "oracle_scripts_avg_order_by", "ofType": null }, "description": null @@ -20237,7 +19729,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_max_order_by", + "name": "oracle_scripts_max_order_by", "ofType": null }, "description": null @@ -20247,7 +19739,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_min_order_by", + "name": "oracle_scripts_min_order_by", "ofType": null }, "description": null @@ -20257,7 +19749,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_order_by", + "name": "oracle_scripts_stddev_order_by", "ofType": null }, "description": null @@ -20267,7 +19759,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_pop_order_by", + "name": "oracle_scripts_stddev_pop_order_by", "ofType": null }, "description": null @@ -20277,7 +19769,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_stddev_samp_order_by", + "name": "oracle_scripts_stddev_samp_order_by", "ofType": null }, "description": null @@ -20287,7 +19779,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_sum_order_by", + "name": "oracle_scripts_sum_order_by", "ofType": null }, "description": null @@ -20297,7 +19789,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_var_pop_order_by", + "name": "oracle_scripts_var_pop_order_by", "ofType": null }, "description": null @@ -20307,7 +19799,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_var_samp_order_by", + "name": "oracle_scripts_var_samp_order_by", "ofType": null }, "description": null @@ -20317,7 +19809,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_variance_order_by", + "name": "oracle_scripts_variance_order_by", "ofType": null }, "description": null @@ -20326,9 +19818,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_aggregate_order_by", + "name": "oracle_scripts_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"oracle_script_revisions\"", + "description": "order by aggregate values of table \"oracle_scripts\"", "fields": null }, { @@ -20347,7 +19839,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", + "name": "oracle_scripts_insert_input", "ofType": null } } @@ -20360,7 +19852,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", + "name": "oracle_scripts_on_conflict", "ofType": null }, "description": null @@ -20369,9 +19861,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_arr_rel_insert_input", + "name": "oracle_scripts_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"oracle_script_revisions\"", + "description": "input type for inserting array relation for remote table \"oracle_scripts\"", "fields": null }, { @@ -20379,7 +19871,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_avg_fields", + "name": "oracle_scripts_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ @@ -20387,31 +19879,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -20423,40 +19891,20 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, + "name": "last_updated", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "description": null - }, + } + ] + }, + { + "inputFields": [ { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -20466,7 +19914,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -20479,9 +19927,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_avg_order_by", + "name": "oracle_scripts_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"oracle_script_revisions\"", + "description": "order by avg() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -20494,7 +19942,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null } }, @@ -20505,7 +19953,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null @@ -20518,14 +19966,34 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null } }, "description": null }, { - "name": "block_height", + "name": "description", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "last_updated", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -20545,61 +20013,61 @@ "description": null }, { - "name": "oracle_script", + "name": "oracle_script_revisions", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "owner", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "related_data_sources", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "related_data_sources_bool_exp", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "requests", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "requests_bool_exp", "ofType": null }, "description": null }, { - "name": "transaction", + "name": "schema", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "source_code_url", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null @@ -20608,9 +20076,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"oracle_script_revisions\". All fields are combined with a logical 'AND'.", + "description": "Boolean expression to filter rows from the table \"oracle_scripts\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -20618,22 +20086,22 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_constraint", + "name": "oracle_scripts_constraint", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_pkey", + "name": "oracle_scripts_pkey", "description": "unique or primary key constraint" } ], - "description": "unique or primary key constraints on table \"oracle_script_revisions\"", + "description": "unique or primary key constraints on table \"oracle_scripts\"", "fields": null }, { "inputFields": [ { - "name": "block_height", + "name": "id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -20643,7 +20111,7 @@ "description": null }, { - "name": "oracle_script_id", + "name": "last_updated", "defaultValue": null, "type": { "kind": "SCALAR", @@ -20651,19 +20119,30 @@ "ofType": null }, "description": null - }, + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_inc_input", + "enumValues": null, + "description": "input type for incrementing integer columne in table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": [ { - "name": "revision_number", + "name": "description", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -20671,20 +20150,9 @@ "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_inc_input", - "enumValues": null, - "description": "input type for incrementing integer column in table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "block_height", + "name": "last_updated", "defaultValue": null, "type": { "kind": "SCALAR", @@ -20704,61 +20172,61 @@ "description": null }, { - "name": "oracle_script", + "name": "oracle_script_revisions", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_obj_rel_insert_input", + "name": "oracle_script_revisions_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "owner", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "related_data_sources", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "related_data_sources_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "requests", "defaultValue": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "INPUT_OBJECT", + "name": "requests_arr_rel_insert_input", "ofType": null }, "description": null }, { - "name": "transaction", + "name": "schema", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "transactions_obj_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "source_code_url", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "String", "ofType": null }, "description": null @@ -20767,9 +20235,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_insert_input", + "name": "oracle_scripts_insert_input", "enumValues": null, - "description": "input type for inserting data into table \"oracle_script_revisions\"", + "description": "input type for inserting data into table \"oracle_scripts\"", "fields": null }, { @@ -20777,7 +20245,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_max_fields", + "name": "oracle_scripts_max_fields", "enumValues": null, "description": "aggregate max on columns", "fields": [ @@ -20785,7 +20253,31 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { "kind": "SCALAR", "name": "bigint", @@ -20809,10 +20301,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "owner", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20821,10 +20313,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "schema", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20833,10 +20325,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "source_code_url", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20846,7 +20338,27 @@ { "inputFields": [ { - "name": "block_height", + "name": "description", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -20866,7 +20378,7 @@ "description": null }, { - "name": "oracle_script_id", + "name": "owner", "defaultValue": null, "type": { "kind": "ENUM", @@ -20876,7 +20388,7 @@ "description": null }, { - "name": "revision_number", + "name": "schema", "defaultValue": null, "type": { "kind": "ENUM", @@ -20886,7 +20398,7 @@ "description": null }, { - "name": "timestamp", + "name": "source_code_url", "defaultValue": null, "type": { "kind": "ENUM", @@ -20899,9 +20411,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_max_order_by", + "name": "oracle_scripts_max_order_by", "enumValues": null, - "description": "order by max() on columns of table \"oracle_script_revisions\"", + "description": "order by max() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -20909,7 +20421,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_min_fields", + "name": "oracle_scripts_min_fields", "enumValues": null, "description": "aggregate min on columns", "fields": [ @@ -20917,7 +20429,31 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "last_updated", "type": { "kind": "SCALAR", "name": "bigint", @@ -20941,10 +20477,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "owner", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20953,10 +20489,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "schema", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20965,10 +20501,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "source_code_url", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -20978,7 +20514,27 @@ { "inputFields": [ { - "name": "block_height", + "name": "description", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -20998,7 +20554,7 @@ "description": null }, { - "name": "oracle_script_id", + "name": "owner", "defaultValue": null, "type": { "kind": "ENUM", @@ -21008,7 +20564,7 @@ "description": null }, { - "name": "revision_number", + "name": "schema", "defaultValue": null, "type": { "kind": "ENUM", @@ -21018,7 +20574,7 @@ "description": null }, { - "name": "timestamp", + "name": "source_code_url", "defaultValue": null, "type": { "kind": "ENUM", @@ -21031,9 +20587,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_min_order_by", + "name": "oracle_scripts_min_order_by", "enumValues": null, - "description": "order by min() on columns of table \"oracle_script_revisions\"", + "description": "order by min() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -21041,9 +20597,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_mutation_response", + "name": "oracle_scripts_mutation_response", "enumValues": null, - "description": "response of any mutation on the table \"oracle_script_revisions\"", + "description": "response of any mutation on the table \"oracle_scripts\"", "fields": [ { "args": [], @@ -21077,7 +20633,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null } } @@ -21097,7 +20653,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_insert_input", + "name": "oracle_scripts_insert_input", "ofType": null } }, @@ -21108,7 +20664,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_on_conflict", + "name": "oracle_scripts_on_conflict", "ofType": null }, "description": null @@ -21117,9 +20673,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_obj_rel_insert_input", + "name": "oracle_scripts_obj_rel_insert_input", "enumValues": null, - "description": "input type for inserting object relation for remote table \"oracle_script_revisions\"", + "description": "input type for inserting object relation for remote table \"oracle_scripts\"", "fields": null }, { @@ -21132,7 +20688,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_constraint", + "name": "oracle_scripts_constraint", "ofType": null } }, @@ -21152,7 +20708,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_update_column", + "name": "oracle_scripts_update_column", "ofType": null } } @@ -21165,7 +20721,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": null @@ -21174,15 +20730,15 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_on_conflict", + "name": "oracle_scripts_on_conflict", "enumValues": null, - "description": "on conflict condition type for table \"oracle_script_revisions\"", + "description": "on conflict condition type for table \"oracle_scripts\"", "fields": null }, { "inputFields": [ { - "name": "block_height", + "name": "description", "defaultValue": null, "type": { "kind": "ENUM", @@ -21192,7 +20748,7 @@ "description": null }, { - "name": "name", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -21202,17 +20758,17 @@ "description": null }, { - "name": "oracle_script", + "name": "last_updated", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "name", "defaultValue": null, "type": { "kind": "ENUM", @@ -21222,17 +20778,17 @@ "description": null }, { - "name": "revision_number", + "name": "oracle_script_revisions_aggregate", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "oracle_script_revisions_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "owner", "defaultValue": null, "type": { "kind": "ENUM", @@ -21242,61 +20798,42 @@ "description": null }, { - "name": "transaction", + "name": "related_data_sources_aggregate", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "transactions_order_by", + "name": "related_data_sources_aggregate_order_by", "ofType": null }, "description": null }, { - "name": "tx_hash", + "name": "requests_aggregate", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "requests_aggregate_order_by", "ofType": null }, "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_order_by", - "enumValues": null, - "description": "ordering options when selecting data from \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": [ + }, { - "name": "oracle_script_id", + "name": "schema", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "source_code_url", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "description": null } @@ -21304,9 +20841,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_pk_columns_input", + "name": "oracle_scripts_order_by", "enumValues": null, - "description": "primary key columns input for table: \"oracle_script_revisions\"", + "description": "ordering options when selecting data from \"oracle_scripts\"", "fields": null }, { @@ -21314,62 +20851,58 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "description", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "id", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "last_updated", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "name", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "owner", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "schema", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "source_code_url", "description": "column name" } ], - "description": "select columns of table \"oracle_script_revisions\"", + "description": "select columns of table \"oracle_scripts\"", "fields": null }, { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "name", + "name": "description", "defaultValue": null, "type": { "kind": "SCALAR", @@ -21379,27 +20912,7 @@ "description": null }, { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "name": "timestamp", + "name": "id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -21409,121 +20922,51 @@ "description": null }, { - "name": "tx_hash", + "name": "last_updated", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", - "ofType": null - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "oracle_script_revisions_set_input", - "enumValues": null, - "description": "input type for updating data in table \"oracle_script_revisions\"", - "fields": null - }, - { - "inputFields": null, - "kind": "OBJECT", - "possibleTypes": null, - "interfaces": [], - "name": "oracle_script_revisions_stddev_fields", - "enumValues": null, - "description": "aggregate stddev on columns", - "fields": [ - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - } - ] - }, - { - "inputFields": [ + "name": "bigint", + "ofType": null + }, + "description": null + }, { - "name": "block_height", + "name": "name", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "oracle_script_id", + "name": "owner", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "revision_number", + "name": "schema", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "timestamp", + "name": "source_code_url", "defaultValue": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null @@ -21532,9 +20975,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_stddev_order_by", + "name": "oracle_scripts_set_input", "enumValues": null, - "description": "order by stddev() on columns of table \"oracle_script_revisions\"", + "description": "input type for updating data in table \"oracle_scripts\"", "fields": null }, { @@ -21542,15 +20985,15 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_stddev_pop_fields", + "name": "oracle_scripts_stddev_fields", "enumValues": null, - "description": "aggregate stddev_pop on columns", + "description": "aggregate stddev on columns", "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -21562,19 +21005,61 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", "ofType": null }, "description": null + } + ] + }, + { + "inputFields": [ + { + "name": "id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null }, + { + "name": "last_updated", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "oracle_scripts_stddev_order_by", + "enumValues": null, + "description": "order by stddev() on columns of table \"oracle_scripts\"", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "oracle_scripts_stddev_pop_fields", + "enumValues": null, + "description": "aggregate stddev_pop on columns", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -21586,7 +21071,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -21599,27 +21084,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -21629,7 +21094,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -21642,9 +21107,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_stddev_pop_order_by", + "name": "oracle_scripts_stddev_pop_order_by", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"oracle_script_revisions\"", + "description": "order by stddev_pop() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -21652,7 +21117,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_stddev_samp_fields", + "name": "oracle_scripts_stddev_samp_fields", "enumValues": null, "description": "aggregate stddev_samp on columns", "fields": [ @@ -21660,31 +21125,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -21696,7 +21137,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -21709,27 +21150,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -21739,7 +21160,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -21752,9 +21173,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_stddev_samp_order_by", + "name": "oracle_scripts_stddev_samp_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"oracle_script_revisions\"", + "description": "order by stddev_samp() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -21762,7 +21183,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_sum_fields", + "name": "oracle_scripts_sum_fields", "enumValues": null, "description": "aggregate sum on columns", "fields": [ @@ -21770,31 +21191,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "bigint", @@ -21806,7 +21203,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "bigint", @@ -21819,27 +21216,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -21849,7 +21226,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -21862,9 +21239,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_sum_order_by", + "name": "oracle_scripts_sum_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"oracle_script_revisions\"", + "description": "order by sum() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -21872,46 +21249,52 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_update_column", + "name": "oracle_scripts_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "block_height", + "name": "description", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "id", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_id", + "name": "last_updated", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "revision_number", + "name": "name", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "owner", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "tx_hash", + "name": "schema", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "source_code_url", "description": "column name" } ], - "description": "update columns of table \"oracle_script_revisions\"", + "description": "update columns of table \"oracle_scripts\"", "fields": null }, { @@ -21919,7 +21302,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_var_pop_fields", + "name": "oracle_scripts_var_pop_fields", "enumValues": null, "description": "aggregate var_pop on columns", "fields": [ @@ -21927,31 +21310,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -21963,7 +21322,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -21976,27 +21335,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -22006,7 +21345,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -22019,9 +21358,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_var_pop_order_by", + "name": "oracle_scripts_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"oracle_script_revisions\"", + "description": "order by var_pop() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -22029,7 +21368,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_var_samp_fields", + "name": "oracle_scripts_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -22037,31 +21376,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -22073,7 +21388,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -22086,27 +21401,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -22116,7 +21411,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -22129,9 +21424,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_var_samp_order_by", + "name": "oracle_scripts_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"oracle_script_revisions\"", + "description": "order by var_samp() on columns of table \"oracle_scripts\"", "fields": null }, { @@ -22139,7 +21434,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_script_revisions_variance_fields", + "name": "oracle_scripts_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -22147,31 +21442,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "oracle_script_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "description": null - }, - { - "args": [], - "isDeprecated": false, - "deprecationReason": null, - "name": "revision_number", + "name": "id", "type": { "kind": "SCALAR", "name": "Float", @@ -22183,7 +21454,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "timestamp", + "name": "last_updated", "type": { "kind": "SCALAR", "name": "Float", @@ -22196,27 +21467,7 @@ { "inputFields": [ { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "ENUM", @@ -22226,7 +21477,7 @@ "description": null }, { - "name": "timestamp", + "name": "last_updated", "defaultValue": null, "type": { "kind": "ENUM", @@ -22239,57 +21490,88 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_script_revisions_variance_order_by", + "name": "oracle_scripts_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"oracle_script_revisions\"", + "description": "order by variance() on columns of table \"oracle_scripts\"", "fields": null }, { "inputFields": null, - "kind": "OBJECT", + "kind": "ENUM", "possibleTypes": null, - "interfaces": [], - "name": "oracle_scripts", - "enumValues": null, - "description": "columns and relationships of \"oracle_scripts\"", - "fields": [ + "interfaces": null, + "name": "order_by", + "enumValues": [ { - "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "code_hash", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - } - }, - "description": null + "name": "asc", + "description": "in the ascending order, nulls last" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "asc_nulls_first", + "description": "in the ascending order, nulls first" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "asc_nulls_last", + "description": "in the ascending order, nulls last" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "desc", + "description": "in the descending order, nulls first" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "desc_nulls_first", + "description": "in the descending order, nulls first" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "desc_nulls_last", + "description": "in the descending order, nulls last" + } + ], + "description": "column ordering options", + "fields": null + }, + { + "inputFields": null, + "kind": "OBJECT", + "possibleTypes": null, + "interfaces": [], + "name": "packets", + "enumValues": null, + "description": "columns and relationships of \"packets\"", + "fields": [ { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "block", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "blocks", "ofType": null } }, - "description": null + "description": "An object relationship" }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "NON_NULL", "name": null, @@ -22302,16 +21584,27 @@ "description": null }, { - "args": [], + "args": [ + { + "name": "path", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": "JSON select path" + } + ], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "detail", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "jsonb", "ofType": null } }, @@ -22321,13 +21614,13 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "is_incoming", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -22337,197 +21630,55 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_code", + "name": "my_channel", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_script_codes", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "description": "An object relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "my_port", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "oracle_script_revisions_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "sequence", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null }, { "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "type", "type": { "kind": "NON_NULL", "name": null, @@ -22540,352 +21691,52 @@ "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], - "isDeprecated": false, - "deprecationReason": null, - "name": "related_data_sources", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "related_data_sources", - "ofType": null - } - } - } - }, - "description": "An array relationship" - }, - { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "related_data_sources_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "related_data_sources_aggregate", + "name": "your_chain_id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "related_data_sources_aggregate", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests", + "name": "your_channel", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "requests", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "description": "An array relationship" + "description": null }, { - "args": [ - { - "name": "distinct_on", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "requests_select_column", - "ofType": null - } - } - }, - "description": "distinct select on columns" - }, - { - "name": "limit", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "limit the number of rows returned" - }, - { - "name": "offset", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "description": "skip the first n rows. Use only with order_by" - }, - { - "name": "order_by", - "defaultValue": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "requests_order_by", - "ofType": null - } - } - }, - "description": "sort the rows by one or more columns" - }, - { - "name": "where", - "defaultValue": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", - "ofType": null - }, - "description": "filter the rows returned" - } - ], + "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "requests_aggregate", + "name": "your_port", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "requests_aggregate", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "description": "An aggregated array relationship" + "description": null } ] }, @@ -22894,9 +21745,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_aggregate", + "name": "packets_aggregate", "enumValues": null, - "description": "aggregated selection of \"oracle_scripts\"", + "description": "aggregated selection of \"packets\"", "fields": [ { "args": [], @@ -22905,7 +21756,7 @@ "name": "aggregate", "type": { "kind": "OBJECT", - "name": "oracle_scripts_aggregate_fields", + "name": "packets_aggregate_fields", "ofType": null }, "description": null @@ -22926,7 +21777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null } } @@ -22941,9 +21792,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_aggregate_fields", + "name": "packets_aggregate_fields", "enumValues": null, - "description": "aggregate fields of \"oracle_scripts\"", + "description": "aggregate fields of \"packets\"", "fields": [ { "args": [], @@ -22952,7 +21803,7 @@ "name": "avg", "type": { "kind": "OBJECT", - "name": "oracle_scripts_avg_fields", + "name": "packets_avg_fields", "ofType": null }, "description": null @@ -22970,7 +21821,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "ofType": null } } @@ -23005,7 +21856,7 @@ "name": "max", "type": { "kind": "OBJECT", - "name": "oracle_scripts_max_fields", + "name": "packets_max_fields", "ofType": null }, "description": null @@ -23017,7 +21868,7 @@ "name": "min", "type": { "kind": "OBJECT", - "name": "oracle_scripts_min_fields", + "name": "packets_min_fields", "ofType": null }, "description": null @@ -23029,7 +21880,7 @@ "name": "stddev", "type": { "kind": "OBJECT", - "name": "oracle_scripts_stddev_fields", + "name": "packets_stddev_fields", "ofType": null }, "description": null @@ -23041,7 +21892,7 @@ "name": "stddev_pop", "type": { "kind": "OBJECT", - "name": "oracle_scripts_stddev_pop_fields", + "name": "packets_stddev_pop_fields", "ofType": null }, "description": null @@ -23053,7 +21904,7 @@ "name": "stddev_samp", "type": { "kind": "OBJECT", - "name": "oracle_scripts_stddev_samp_fields", + "name": "packets_stddev_samp_fields", "ofType": null }, "description": null @@ -23065,7 +21916,7 @@ "name": "sum", "type": { "kind": "OBJECT", - "name": "oracle_scripts_sum_fields", + "name": "packets_sum_fields", "ofType": null }, "description": null @@ -23077,7 +21928,7 @@ "name": "var_pop", "type": { "kind": "OBJECT", - "name": "oracle_scripts_var_pop_fields", + "name": "packets_var_pop_fields", "ofType": null }, "description": null @@ -23089,7 +21940,7 @@ "name": "var_samp", "type": { "kind": "OBJECT", - "name": "oracle_scripts_var_samp_fields", + "name": "packets_var_samp_fields", "ofType": null }, "description": null @@ -23101,7 +21952,7 @@ "name": "variance", "type": { "kind": "OBJECT", - "name": "oracle_scripts_variance_fields", + "name": "packets_variance_fields", "ofType": null }, "description": null @@ -23115,7 +21966,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_avg_order_by", + "name": "packets_avg_order_by", "ofType": null }, "description": null @@ -23135,7 +21986,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_max_order_by", + "name": "packets_max_order_by", "ofType": null }, "description": null @@ -23145,7 +21996,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_min_order_by", + "name": "packets_min_order_by", "ofType": null }, "description": null @@ -23155,7 +22006,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_order_by", + "name": "packets_stddev_order_by", "ofType": null }, "description": null @@ -23165,7 +22016,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_pop_order_by", + "name": "packets_stddev_pop_order_by", "ofType": null }, "description": null @@ -23175,7 +22026,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_stddev_samp_order_by", + "name": "packets_stddev_samp_order_by", "ofType": null }, "description": null @@ -23185,7 +22036,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_sum_order_by", + "name": "packets_sum_order_by", "ofType": null }, "description": null @@ -23195,7 +22046,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_var_pop_order_by", + "name": "packets_var_pop_order_by", "ofType": null }, "description": null @@ -23205,7 +22056,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_var_samp_order_by", + "name": "packets_var_samp_order_by", "ofType": null }, "description": null @@ -23215,7 +22066,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_variance_order_by", + "name": "packets_variance_order_by", "ofType": null }, "description": null @@ -23224,9 +22075,30 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_aggregate_order_by", + "name": "packets_aggregate_order_by", "enumValues": null, - "description": "order by aggregate values of table \"oracle_scripts\"", + "description": "order by aggregate values of table \"packets\"", + "fields": null + }, + { + "inputFields": [ + { + "name": "detail", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "packets_append_input", + "enumValues": null, + "description": "append existing jsonb value of filtered columns with new jsonb value", "fields": null }, { @@ -23245,7 +22117,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", + "name": "packets_insert_input", "ofType": null } } @@ -23258,7 +22130,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", + "name": "packets_on_conflict", "ofType": null }, "description": null @@ -23267,9 +22139,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_arr_rel_insert_input", + "name": "packets_arr_rel_insert_input", "enumValues": null, - "description": "input type for inserting array relation for remote table \"oracle_scripts\"", + "description": "input type for inserting array relation for remote table \"packets\"", "fields": null }, { @@ -23277,7 +22149,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_avg_fields", + "name": "packets_avg_fields", "enumValues": null, "description": "aggregate avg on columns", "fields": [ @@ -23285,7 +22157,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -23297,7 +22169,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -23310,7 +22182,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -23320,7 +22192,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -23333,9 +22205,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_avg_order_by", + "name": "packets_avg_order_by", "enumValues": null, - "description": "order by avg() on columns of table \"oracle_scripts\"", + "description": "order by avg() on columns of table \"packets\"", "fields": null }, { @@ -23348,7 +22220,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null } }, @@ -23359,7 +22231,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": null @@ -23372,54 +22244,54 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null } }, "description": null }, { - "name": "code_hash", + "name": "block", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", + "name": "blocks_bool_exp", "ofType": null }, "description": null }, { - "name": "description", + "name": "block_height", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "id", + "name": "detail", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "jsonb_comparison_exp", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "is_incoming", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "Boolean_comparison_exp", "ofType": null }, "description": null }, { - "name": "name", + "name": "my_channel", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -23429,27 +22301,27 @@ "description": null }, { - "name": "oracle_script_code", + "name": "my_port", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions", + "name": "sequence", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "owner", + "name": "type", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", @@ -23459,21 +22331,31 @@ "description": null }, { - "name": "related_data_sources", + "name": "your_chain_id", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "related_data_sources_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "description": null }, { - "name": "requests", + "name": "your_channel", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "requests_bool_exp", + "name": "String_comparison_exp", + "ofType": null + }, + "description": null + }, + { + "name": "your_port", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "description": null @@ -23482,9 +22364,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "enumValues": null, - "description": "Boolean expression to filter rows from the table \"oracle_scripts\". All fields are combined with a logical 'AND'.", + "description": "Boolean expression to filter rows from the table \"packets\". All fields are combined with a logical 'AND'.", "fields": null }, { @@ -23492,22 +22374,89 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_constraint", + "name": "packets_constraint", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_pkey", + "name": "packets_pkey", "description": "unique or primary key constraint" } ], - "description": "unique or primary key constraints on table \"oracle_scripts\"", + "description": "unique or primary key constraints on table \"packets\"", "fields": null }, { "inputFields": [ { - "name": "id", + "name": "detail", + "defaultValue": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "packets_delete_at_path_input", + "enumValues": null, + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "fields": null + }, + { + "inputFields": [ + { + "name": "detail", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "packets_delete_elem_input", + "enumValues": null, + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "fields": null + }, + { + "inputFields": [ + { + "name": "detail", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + } + ], + "kind": "INPUT_OBJECT", + "possibleTypes": null, + "interfaces": null, + "name": "packets_delete_key_input", + "enumValues": null, + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "fields": null + }, + { + "inputFields": [ + { + "name": "block_height", "defaultValue": null, "type": { "kind": "SCALAR", @@ -23517,7 +22466,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "SCALAR", @@ -23530,55 +22479,65 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_inc_input", + "name": "packets_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"oracle_scripts\"", + "description": "input type for incrementing integer columne in table \"packets\"", "fields": null }, { "inputFields": [ { - "name": "code_hash", + "name": "block", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_obj_rel_insert_input", + "ofType": null + }, + "description": null + }, + { + "name": "block_height", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "description", + "name": "detail", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null }, "description": null }, { - "name": "id", + "name": "is_incoming", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Boolean", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "my_channel", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "name", + "name": "my_port", "defaultValue": null, "type": { "kind": "SCALAR", @@ -23588,27 +22547,27 @@ "description": null }, { - "name": "oracle_script_code", + "name": "sequence", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_obj_rel_insert_input", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions", + "name": "type", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_arr_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "owner", + "name": "your_chain_id", "defaultValue": null, "type": { "kind": "SCALAR", @@ -23618,21 +22577,21 @@ "description": null }, { - "name": "related_data_sources", + "name": "your_channel", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_arr_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null }, { - "name": "requests", + "name": "your_port", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_arr_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "description": null @@ -23641,9 +22600,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_insert_input", + "name": "packets_insert_input", "enumValues": null, - "description": "input type for inserting data into table \"oracle_scripts\"", + "description": "input type for inserting data into table \"packets\"", "fields": null }, { @@ -23651,7 +22610,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_max_fields", + "name": "packets_max_fields", "enumValues": null, "description": "aggregate max on columns", "fields": [ @@ -23659,7 +22618,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "my_channel", "type": { "kind": "SCALAR", "name": "String", @@ -23671,10 +22642,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "my_port", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -23683,7 +22654,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "bigint", @@ -23695,7 +22666,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "type", "type": { "kind": "SCALAR", "name": "String", @@ -23707,7 +22678,31 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "your_chain_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "your_channel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "your_port", "type": { "kind": "SCALAR", "name": "String", @@ -23720,7 +22715,7 @@ { "inputFields": [ { - "name": "description", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -23730,7 +22725,7 @@ "description": null }, { - "name": "id", + "name": "my_channel", "defaultValue": null, "type": { "kind": "ENUM", @@ -23740,7 +22735,7 @@ "description": null }, { - "name": "last_updated", + "name": "my_port", "defaultValue": null, "type": { "kind": "ENUM", @@ -23750,7 +22745,7 @@ "description": null }, { - "name": "name", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -23760,7 +22755,37 @@ "description": null }, { - "name": "owner", + "name": "type", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_chain_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_channel", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_port", "defaultValue": null, "type": { "kind": "ENUM", @@ -23773,9 +22798,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_max_order_by", + "name": "packets_max_order_by", "enumValues": null, - "description": "order by max() on columns of table \"oracle_scripts\"", + "description": "order by max() on columns of table \"packets\"", "fields": null }, { @@ -23783,7 +22808,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_min_fields", + "name": "packets_min_fields", "enumValues": null, "description": "aggregate min on columns", "fields": [ @@ -23791,7 +22816,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "block_height", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "my_channel", "type": { "kind": "SCALAR", "name": "String", @@ -23803,10 +22840,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "my_port", "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null @@ -23815,7 +22852,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "bigint", @@ -23827,7 +22864,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "type", "type": { "kind": "SCALAR", "name": "String", @@ -23839,7 +22876,31 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "your_chain_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "your_channel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "your_port", "type": { "kind": "SCALAR", "name": "String", @@ -23852,7 +22913,7 @@ { "inputFields": [ { - "name": "description", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -23862,7 +22923,7 @@ "description": null }, { - "name": "id", + "name": "my_channel", "defaultValue": null, "type": { "kind": "ENUM", @@ -23872,7 +22933,7 @@ "description": null }, { - "name": "last_updated", + "name": "my_port", "defaultValue": null, "type": { "kind": "ENUM", @@ -23882,7 +22943,7 @@ "description": null }, { - "name": "name", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -23892,7 +22953,37 @@ "description": null }, { - "name": "owner", + "name": "type", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_chain_id", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_channel", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "your_port", "defaultValue": null, "type": { "kind": "ENUM", @@ -23905,9 +22996,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_min_order_by", + "name": "packets_min_order_by", "enumValues": null, - "description": "order by min() on columns of table \"oracle_scripts\"", + "description": "order by min() on columns of table \"packets\"", "fields": null }, { @@ -23915,9 +23006,9 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_mutation_response", + "name": "packets_mutation_response", "enumValues": null, - "description": "response of any mutation on the table \"oracle_scripts\"", + "description": "response of any mutation on the table \"packets\"", "fields": [ { "args": [], @@ -23951,7 +23042,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null } } @@ -23971,7 +23062,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_insert_input", + "name": "packets_insert_input", "ofType": null } }, @@ -23982,7 +23073,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_on_conflict", + "name": "packets_on_conflict", "ofType": null }, "description": null @@ -23991,9 +23082,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_obj_rel_insert_input", + "name": "packets_obj_rel_insert_input", "enumValues": null, - "description": "input type for inserting object relation for remote table \"oracle_scripts\"", + "description": "input type for inserting object relation for remote table \"packets\"", "fields": null }, { @@ -24006,7 +23097,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_constraint", + "name": "packets_constraint", "ofType": null } }, @@ -24026,7 +23117,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_update_column", + "name": "packets_update_column", "ofType": null } } @@ -24039,7 +23130,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": null @@ -24048,15 +23139,25 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_on_conflict", + "name": "packets_on_conflict", "enumValues": null, - "description": "on conflict condition type for table \"oracle_scripts\"", + "description": "on conflict condition type for table \"packets\"", "fields": null }, { "inputFields": [ { - "name": "code_hash", + "name": "block", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "blocks_order_by", + "ofType": null + }, + "description": null + }, + { + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24066,7 +23167,7 @@ "description": null }, { - "name": "description", + "name": "detail", "defaultValue": null, "type": { "kind": "ENUM", @@ -24076,7 +23177,7 @@ "description": null }, { - "name": "id", + "name": "is_incoming", "defaultValue": null, "type": { "kind": "ENUM", @@ -24086,7 +23187,7 @@ "description": null }, { - "name": "last_updated", + "name": "my_channel", "defaultValue": null, "type": { "kind": "ENUM", @@ -24096,7 +23197,7 @@ "description": null }, { - "name": "name", + "name": "my_port", "defaultValue": null, "type": { "kind": "ENUM", @@ -24106,27 +23207,27 @@ "description": null }, { - "name": "oracle_script_code", + "name": "sequence", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "oracle_script_revisions_aggregate", + "name": "type", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "owner", + "name": "your_chain_id", "defaultValue": null, "type": { "kind": "ENUM", @@ -24136,21 +23237,21 @@ "description": null }, { - "name": "related_data_sources_aggregate", + "name": "your_channel", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "related_data_sources_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null }, { - "name": "requests_aggregate", + "name": "your_port", "defaultValue": null, "type": { - "kind": "INPUT_OBJECT", - "name": "requests_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "description": null @@ -24159,24 +23260,20 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_order_by", + "name": "packets_order_by", "enumValues": null, - "description": "ordering options when selecting data from \"oracle_scripts\"", + "description": "ordering options when selecting data from \"packets\"", "fields": null }, { "inputFields": [ { - "name": "id", + "name": "detail", "defaultValue": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "description": null } @@ -24184,9 +23281,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_pk_columns_input", + "name": "packets_prepend_input", "enumValues": null, - "description": "primary key columns input for table: \"oracle_scripts\"", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "fields": null }, { @@ -24194,62 +23291,106 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "code_hash", + "name": "block_height", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "detail", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "is_incoming", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "my_channel", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "my_port", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "sequence", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "type", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_chain_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_channel", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_port", "description": "column name" } ], - "description": "select columns of table \"oracle_scripts\"", + "description": "select columns of table \"packets\"", "fields": null }, { "inputFields": [ { - "name": "code_hash", + "name": "block_height", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "description", + "name": "detail", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "description": null + }, + { + "name": "is_incoming", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "description": null + }, + { + "name": "my_channel", "defaultValue": null, "type": { "kind": "SCALAR", @@ -24259,17 +23400,17 @@ "description": null }, { - "name": "id", + "name": "my_port", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "SCALAR", @@ -24279,7 +23420,7 @@ "description": null }, { - "name": "name", + "name": "type", "defaultValue": null, "type": { "kind": "SCALAR", @@ -24289,7 +23430,27 @@ "description": null }, { - "name": "owner", + "name": "your_chain_id", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "your_channel", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "description": null + }, + { + "name": "your_port", "defaultValue": null, "type": { "kind": "SCALAR", @@ -24302,9 +23463,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_set_input", + "name": "packets_set_input", "enumValues": null, - "description": "input type for updating data in table \"oracle_scripts\"", + "description": "input type for updating data in table \"packets\"", "fields": null }, { @@ -24312,7 +23473,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_stddev_fields", + "name": "packets_stddev_fields", "enumValues": null, "description": "aggregate stddev on columns", "fields": [ @@ -24320,7 +23481,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24332,7 +23493,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24345,7 +23506,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24355,7 +23516,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24368,9 +23529,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_order_by", + "name": "packets_stddev_order_by", "enumValues": null, - "description": "order by stddev() on columns of table \"oracle_scripts\"", + "description": "order by stddev() on columns of table \"packets\"", "fields": null }, { @@ -24378,7 +23539,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_stddev_pop_fields", + "name": "packets_stddev_pop_fields", "enumValues": null, "description": "aggregate stddev_pop on columns", "fields": [ @@ -24386,7 +23547,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24398,7 +23559,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24411,7 +23572,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24421,7 +23582,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24434,9 +23595,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_pop_order_by", + "name": "packets_stddev_pop_order_by", "enumValues": null, - "description": "order by stddev_pop() on columns of table \"oracle_scripts\"", + "description": "order by stddev_pop() on columns of table \"packets\"", "fields": null }, { @@ -24444,7 +23605,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_stddev_samp_fields", + "name": "packets_stddev_samp_fields", "enumValues": null, "description": "aggregate stddev_samp on columns", "fields": [ @@ -24452,7 +23613,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24464,7 +23625,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24477,7 +23638,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24487,7 +23648,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24500,9 +23661,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_stddev_samp_order_by", + "name": "packets_stddev_samp_order_by", "enumValues": null, - "description": "order by stddev_samp() on columns of table \"oracle_scripts\"", + "description": "order by stddev_samp() on columns of table \"packets\"", "fields": null }, { @@ -24510,7 +23671,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_sum_fields", + "name": "packets_sum_fields", "enumValues": null, "description": "aggregate sum on columns", "fields": [ @@ -24518,7 +23679,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "bigint", @@ -24530,7 +23691,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "bigint", @@ -24543,7 +23704,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24553,7 +23714,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24566,9 +23727,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_sum_order_by", + "name": "packets_sum_order_by", "enumValues": null, - "description": "order by sum() on columns of table \"oracle_scripts\"", + "description": "order by sum() on columns of table \"packets\"", "fields": null }, { @@ -24576,46 +23737,70 @@ "kind": "ENUM", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_update_column", + "name": "packets_update_column", "enumValues": [ { "isDeprecated": false, "deprecationReason": null, - "name": "code_hash", + "name": "block_height", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "description", + "name": "detail", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "is_incoming", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "my_channel", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "name", + "name": "my_port", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "owner", + "name": "sequence", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "type", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_chain_id", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_channel", + "description": "column name" + }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "your_port", "description": "column name" } ], - "description": "update columns of table \"oracle_scripts\"", + "description": "update columns of table \"packets\"", "fields": null }, { @@ -24623,7 +23808,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_var_pop_fields", + "name": "packets_var_pop_fields", "enumValues": null, "description": "aggregate var_pop on columns", "fields": [ @@ -24631,7 +23816,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24643,7 +23828,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24656,7 +23841,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24666,7 +23851,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24679,9 +23864,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_var_pop_order_by", + "name": "packets_var_pop_order_by", "enumValues": null, - "description": "order by var_pop() on columns of table \"oracle_scripts\"", + "description": "order by var_pop() on columns of table \"packets\"", "fields": null }, { @@ -24689,7 +23874,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_var_samp_fields", + "name": "packets_var_samp_fields", "enumValues": null, "description": "aggregate var_samp on columns", "fields": [ @@ -24697,7 +23882,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24709,7 +23894,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24722,7 +23907,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24732,7 +23917,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24745,9 +23930,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_var_samp_order_by", + "name": "packets_var_samp_order_by", "enumValues": null, - "description": "order by var_samp() on columns of table \"oracle_scripts\"", + "description": "order by var_samp() on columns of table \"packets\"", "fields": null }, { @@ -24755,7 +23940,7 @@ "kind": "OBJECT", "possibleTypes": null, "interfaces": [], - "name": "oracle_scripts_variance_fields", + "name": "packets_variance_fields", "enumValues": null, "description": "aggregate variance on columns", "fields": [ @@ -24763,7 +23948,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "id", + "name": "block_height", "type": { "kind": "SCALAR", "name": "Float", @@ -24775,7 +23960,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "last_updated", + "name": "sequence", "type": { "kind": "SCALAR", "name": "Float", @@ -24788,7 +23973,7 @@ { "inputFields": [ { - "name": "id", + "name": "block_height", "defaultValue": null, "type": { "kind": "ENUM", @@ -24798,7 +23983,7 @@ "description": null }, { - "name": "last_updated", + "name": "sequence", "defaultValue": null, "type": { "kind": "ENUM", @@ -24811,56 +23996,9 @@ "kind": "INPUT_OBJECT", "possibleTypes": null, "interfaces": null, - "name": "oracle_scripts_variance_order_by", + "name": "packets_variance_order_by", "enumValues": null, - "description": "order by variance() on columns of table \"oracle_scripts\"", - "fields": null - }, - { - "inputFields": null, - "kind": "ENUM", - "possibleTypes": null, - "interfaces": null, - "name": "order_by", - "enumValues": [ - { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc", - "description": "in the ascending order, nulls last" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc_nulls_first", - "description": "in the ascending order, nulls first" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "asc_nulls_last", - "description": "in the ascending order, nulls last" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc", - "description": "in the descending order, nulls first" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc_nulls_first", - "description": "in the descending order, nulls first" - }, - { - "isDeprecated": false, - "deprecationReason": null, - "name": "desc_nulls_last", - "description": "in the descending order, nulls last" - } - ], - "description": "column ordering options", + "description": "order by variance() on columns of table \"packets\"", "fields": null }, { @@ -26293,7 +25431,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_codes_select_column", + "name": "oracle_script_revisions_select_column", "ofType": null } } @@ -26331,7 +25469,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_order_by", + "name": "oracle_script_revisions_order_by", "ofType": null } } @@ -26343,7 +25481,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26351,7 +25489,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "type": { "kind": "NON_NULL", "name": null, @@ -26363,13 +25501,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_codes\"" + "description": "fetch data from the table: \"oracle_script_revisions\"" }, { "args": [ @@ -26384,7 +25522,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_codes_select_column", + "name": "oracle_script_revisions_select_column", "ofType": null } } @@ -26422,7 +25560,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_order_by", + "name": "oracle_script_revisions_order_by", "ofType": null } } @@ -26434,7 +25572,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26442,29 +25580,43 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes_aggregate", + "name": "oracle_script_revisions_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_codes_aggregate", + "name": "oracle_script_revisions_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_codes\"" + "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "code_hash", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, @@ -26473,13 +25625,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes_by_pk", + "name": "oracle_script_revisions_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_codes\" using primary key columns" + "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" }, { "args": [ @@ -26494,7 +25646,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -26532,7 +25684,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -26544,7 +25696,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26552,7 +25704,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "oracle_scripts", "type": { "kind": "NON_NULL", "name": null, @@ -26564,13 +25716,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_revisions\"" + "description": "fetch data from the table: \"oracle_scripts\"" }, { "args": [ @@ -26585,7 +25737,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -26623,7 +25775,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -26635,7 +25787,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26643,36 +25795,22 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "oracle_scripts_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "name": "oracle_scripts_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" + "description": "fetch aggregated fields from the table: \"oracle_scripts\"" }, { "args": [ { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -26688,13 +25826,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_by_pk", + "name": "oracle_scripts_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" + "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" }, { "args": [ @@ -26709,7 +25847,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "ofType": null } } @@ -26747,7 +25885,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "packets_order_by", "ofType": null } } @@ -26759,7 +25897,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26767,7 +25905,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts", + "name": "packets", "type": { "kind": "NON_NULL", "name": null, @@ -26779,13 +25917,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_scripts\"" + "description": "fetch data from the table: \"packets\"" }, { "args": [ @@ -26800,7 +25938,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "ofType": null } } @@ -26838,7 +25976,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "packets_order_by", "ofType": null } } @@ -26850,7 +25988,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -26858,22 +25996,64 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_aggregate", + "name": "packets_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts_aggregate", + "name": "packets_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_scripts\"" + "description": "fetch aggregated fields from the table: \"packets\"" }, { "args": [ { - "name": "id", + "name": "is_incoming", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "description": null + }, + { + "name": "my_channel", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "my_port", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "sequence", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -26889,13 +26069,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_by_pk", + "name": "packets_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null }, - "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" + "description": "fetch data from the table: \"packets\" using primary key columns" }, { "args": [ @@ -30244,7 +29424,7 @@ "interfaces": null, "name": "raw_data_requests_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"raw_data_requests\"", + "description": "input type for incrementing integer columne in table \"raw_data_requests\"", "fields": null }, { @@ -30708,45 +29888,6 @@ "description": "ordering options when selecting data from \"raw_data_requests\"", "fields": null }, - { - "inputFields": [ - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "raw_data_requests_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"raw_data_requests\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -32142,7 +31283,7 @@ "interfaces": null, "name": "related_data_sources_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"related_data_sources\"", + "description": "input type for incrementing integer columne in table \"related_data_sources\"", "fields": null }, { @@ -32522,45 +31663,6 @@ "description": "ordering options when selecting data from \"related_data_sources\"", "fields": null }, - { - "inputFields": [ - { - "name": "data_source_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "related_data_sources_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"related_data_sources\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -33151,7 +32253,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null } }, @@ -33777,7 +32879,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null @@ -33865,7 +32967,7 @@ "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -33896,7 +32998,7 @@ "interfaces": null, "name": "report_details_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"report_details\"", + "description": "input type for incrementing integer columne in table \"report_details\"", "fields": null }, { @@ -33926,7 +33028,7 @@ "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -34008,7 +33110,7 @@ "name": "exitcode", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -34140,7 +33242,7 @@ "name": "exitcode", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -34468,59 +33570,6 @@ "description": "ordering options when selecting data from \"report_details\"", "fields": null }, - { - "inputFields": [ - { - "name": "external_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "report_details_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"report_details\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -34595,7 +33644,7 @@ "defaultValue": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -34997,7 +34046,7 @@ "name": "exitcode", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "description": null @@ -36344,7 +35393,7 @@ "interfaces": null, "name": "reports_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"reports\"", + "description": "input type for incrementing integer columne in table \"reports\"", "fields": null }, { @@ -36848,45 +35897,6 @@ "description": "ordering options when selecting data from \"reports\"", "fields": null }, - { - "inputFields": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "reports_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"reports\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -37942,7 +36952,7 @@ "interfaces": null, "name": "requested_validators_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"requested_validators\"", + "description": "input type for incrementing integer columne in table \"requested_validators\"", "fields": null }, { @@ -38322,45 +37332,6 @@ "description": "ordering options when selecting data from \"requested_validators\"", "fields": null }, - { - "inputFields": [ - { - "name": "request_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "validator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requested_validators_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"requested_validators\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -38819,6 +37790,22 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -39199,6 +38186,18 @@ }, "description": "An aggregated array relationship" }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [ { @@ -39409,10 +38408,10 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "result", + "name": "resolve_time", "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null @@ -39421,15 +38420,11 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "result", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "bytea", + "ofType": null }, "description": null }, @@ -39883,6 +38878,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -39899,7 +38906,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -39931,6 +38950,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -39942,7 +38971,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -40040,6 +39079,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, { "name": "oracle_script", "defaultValue": null, @@ -40080,6 +39129,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null + }, + "description": null + }, { "name": "requested_validators", "defaultValue": null, @@ -40111,21 +39170,21 @@ "description": null }, { - "name": "result", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bytea_comparison_exp", + "name": "bigint_comparison_exp", "ofType": null }, "description": null }, { - "name": "sufficient_validator_count", + "name": "result", "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "bytea_comparison_exp", "ofType": null }, "description": null @@ -40198,6 +39257,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -40209,7 +39278,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "SCALAR", @@ -40224,7 +39303,7 @@ "interfaces": null, "name": "requests_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"requests\"", + "description": "input type for incrementing integer columne in table \"requests\"", "fields": null }, { @@ -40269,6 +39348,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "name": "oracle_script", "defaultValue": null, @@ -40309,6 +39398,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "name": "requested_validators", "defaultValue": null, @@ -40340,21 +39439,21 @@ "description": null }, { - "name": "result", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "sufficient_validator_count", + "name": "result", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "bytea", "ofType": null }, "description": null @@ -40433,6 +39532,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -40445,6 +39556,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -40473,7 +39596,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "bigint", @@ -40515,6 +39638,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -40525,6 +39658,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "requester", "defaultValue": null, @@ -40546,7 +39689,7 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -40609,6 +39752,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -40621,6 +39776,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -40649,7 +39816,7 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "bigint", @@ -40691,6 +39858,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -40701,6 +39878,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "requester", "defaultValue": null, @@ -40722,7 +39909,7 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -40925,6 +40112,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script", "defaultValue": null, @@ -40965,6 +40162,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "requested_validators_aggregate", "defaultValue": null, @@ -40996,7 +40203,7 @@ "description": null }, { - "name": "result", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41006,7 +40213,7 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "result", "defaultValue": null, "type": { "kind": "ENUM", @@ -41044,31 +40251,6 @@ "description": "ordering options when selecting data from \"requests\"", "fields": null }, - { - "inputFields": [ - { - "name": "id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "requests_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"requests\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -41100,12 +40282,24 @@ "name": "id", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, "name": "oracle_script_id", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "request_time", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, @@ -41121,13 +40315,13 @@ { "isDeprecated": false, "deprecationReason": null, - "name": "result", + "name": "resolve_time", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "result", "description": "column name" }, { @@ -41182,6 +40376,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41192,6 +40396,16 @@ }, "description": null }, + { + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "name": "requester", "defaultValue": null, @@ -41213,21 +40427,21 @@ "description": null }, { - "name": "result", + "name": "resolve_time", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", "ofType": null }, "description": null }, { - "name": "sufficient_validator_count", + "name": "result", "defaultValue": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "bytea", "ofType": null }, "description": null @@ -41284,6 +40498,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41300,7 +40526,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -41332,6 +40570,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41343,7 +40591,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41394,6 +40652,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41410,7 +40680,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -41442,6 +40724,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41453,7 +40745,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41504,6 +40806,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41520,7 +40834,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -41552,6 +40878,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41563,7 +40899,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41614,6 +40960,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41630,7 +40988,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "bigint", @@ -41662,6 +41032,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41673,7 +41053,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41722,12 +41112,24 @@ "name": "id", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, "name": "oracle_script_id", "description": "column name" }, + { + "isDeprecated": false, + "deprecationReason": null, + "name": "request_time", + "description": "column name" + }, { "isDeprecated": false, "deprecationReason": null, @@ -41743,13 +41145,13 @@ { "isDeprecated": false, "deprecationReason": null, - "name": "result", + "name": "resolve_time", "description": "column name" }, { "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "result", "description": "column name" }, { @@ -41795,6 +41197,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41811,7 +41225,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -41843,6 +41269,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41854,7 +41290,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -41905,6 +41351,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -41921,7 +41379,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -41953,6 +41423,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -41964,7 +41444,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -42015,6 +41505,18 @@ }, "description": null }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "min_count", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, { "args": [], "isDeprecated": false, @@ -42031,7 +41533,19 @@ "args": [], "isDeprecated": false, "deprecationReason": null, - "name": "sufficient_validator_count", + "name": "request_time", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "description": null + }, + { + "args": [], + "isDeprecated": false, + "deprecationReason": null, + "name": "resolve_time", "type": { "kind": "SCALAR", "name": "Float", @@ -42063,6 +41577,16 @@ }, "description": null }, + { + "name": "min_count", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, { "name": "oracle_script_id", "defaultValue": null, @@ -42074,7 +41598,17 @@ "description": null }, { - "name": "sufficient_validator_count", + "name": "request_time", + "defaultValue": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "description": null + }, + { + "name": "resolve_time", "defaultValue": null, "type": { "kind": "ENUM", @@ -43522,7 +43056,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_codes_select_column", + "name": "oracle_script_revisions_select_column", "ofType": null } } @@ -43560,7 +43094,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_order_by", + "name": "oracle_script_revisions_order_by", "ofType": null } } @@ -43572,7 +43106,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -43580,7 +43114,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "type": { "kind": "NON_NULL", "name": null, @@ -43592,13 +43126,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_codes\"" + "description": "fetch data from the table: \"oracle_script_revisions\"" }, { "args": [ @@ -43613,7 +43147,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_codes_select_column", + "name": "oracle_script_revisions_select_column", "ofType": null } } @@ -43651,7 +43185,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_order_by", + "name": "oracle_script_revisions_order_by", "ofType": null } } @@ -43663,7 +43197,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_codes_bool_exp", + "name": "oracle_script_revisions_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -43671,29 +43205,43 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes_aggregate", + "name": "oracle_script_revisions_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_codes_aggregate", + "name": "oracle_script_revisions_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_codes\"" + "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" }, { "args": [ { - "name": "code_hash", + "name": "oracle_script_id", "defaultValue": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bytea", + "name": "bigint", + "ofType": null + } + }, + "description": null + }, + { + "name": "revision_number", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, @@ -43702,13 +43250,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_codes_by_pk", + "name": "oracle_script_revisions_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_codes", + "name": "oracle_script_revisions", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_codes\" using primary key columns" + "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" }, { "args": [ @@ -43723,7 +43271,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -43761,7 +43309,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -43773,7 +43321,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -43781,7 +43329,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions", + "name": "oracle_scripts", "type": { "kind": "NON_NULL", "name": null, @@ -43793,13 +43341,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_script_revisions\"" + "description": "fetch data from the table: \"oracle_scripts\"" }, { "args": [ @@ -43814,7 +43362,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_script_revisions_select_column", + "name": "oracle_scripts_select_column", "ofType": null } } @@ -43852,7 +43400,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_order_by", + "name": "oracle_scripts_order_by", "ofType": null } } @@ -43864,7 +43412,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_script_revisions_bool_exp", + "name": "oracle_scripts_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -43872,36 +43420,22 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_aggregate", + "name": "oracle_scripts_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_script_revisions_aggregate", + "name": "oracle_scripts_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_script_revisions\"" + "description": "fetch aggregated fields from the table: \"oracle_scripts\"" }, { "args": [ { - "name": "oracle_script_id", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "revision_number", + "name": "id", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -43917,13 +43451,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_script_revisions_by_pk", + "name": "oracle_scripts_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_script_revisions", + "name": "oracle_scripts", "ofType": null }, - "description": "fetch data from the table: \"oracle_script_revisions\" using primary key columns" + "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" }, { "args": [ @@ -43938,7 +43472,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "ofType": null } } @@ -43976,7 +43510,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "packets_order_by", "ofType": null } } @@ -43988,7 +43522,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -43996,7 +43530,7 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts", + "name": "packets", "type": { "kind": "NON_NULL", "name": null, @@ -44008,13 +43542,13 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null } } } }, - "description": "fetch data from the table: \"oracle_scripts\"" + "description": "fetch data from the table: \"packets\"" }, { "args": [ @@ -44029,7 +43563,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "oracle_scripts_select_column", + "name": "packets_select_column", "ofType": null } } @@ -44067,7 +43601,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_order_by", + "name": "packets_order_by", "ofType": null } } @@ -44079,7 +43613,7 @@ "defaultValue": null, "type": { "kind": "INPUT_OBJECT", - "name": "oracle_scripts_bool_exp", + "name": "packets_bool_exp", "ofType": null }, "description": "filter the rows returned" @@ -44087,22 +43621,64 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_aggregate", + "name": "packets_aggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "oracle_scripts_aggregate", + "name": "packets_aggregate", "ofType": null } }, - "description": "fetch aggregated fields from the table: \"oracle_scripts\"" + "description": "fetch aggregated fields from the table: \"packets\"" }, { "args": [ { - "name": "id", + "name": "is_incoming", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "description": null + }, + { + "name": "my_channel", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "my_port", + "defaultValue": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "description": null + }, + { + "name": "sequence", "defaultValue": null, "type": { "kind": "NON_NULL", @@ -44118,13 +43694,13 @@ ], "isDeprecated": false, "deprecationReason": null, - "name": "oracle_scripts_by_pk", + "name": "packets_by_pk", "type": { "kind": "OBJECT", - "name": "oracle_scripts", + "name": "packets", "ofType": null }, - "description": "fetch data from the table: \"oracle_scripts\" using primary key columns" + "description": "fetch data from the table: \"packets\" using primary key columns" }, { "args": [ @@ -48554,7 +48130,7 @@ "interfaces": null, "name": "transactions_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"transactions\"", + "description": "input type for incrementing integer columne in table \"transactions\"", "fields": null }, { @@ -49458,31 +49034,6 @@ "description": "ordering options when selecting data from \"transactions\"", "fields": null }, - { - "inputFields": [ - { - "name": "tx_hash", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bytea", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "transactions_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"transactions\"", - "fields": null - }, { "inputFields": [ { @@ -51502,7 +51053,7 @@ "interfaces": null, "name": "unbonding_delegations_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"unbonding_delegations\"", + "description": "input type for incrementing integer columne in table \"unbonding_delegations\"", "fields": null }, { @@ -56645,7 +56196,7 @@ "interfaces": null, "name": "validator_votes_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"validator_votes\"", + "description": "input type for incrementing integer columne in table \"validator_votes\"", "fields": null }, { @@ -57025,45 +56576,6 @@ "description": "ordering options when selecting data from \"validator_votes\"", "fields": null }, - { - "inputFields": [ - { - "name": "block_height", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "description": null - }, - { - "name": "consensus_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "validator_votes_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"validator_votes\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", @@ -59577,7 +59089,7 @@ "interfaces": null, "name": "validators_inc_input", "enumValues": null, - "description": "input type for incrementing integer column in table \"validators\"", + "description": "input type for incrementing integer columne in table \"validators\"", "fields": null }, { @@ -60953,31 +60465,6 @@ "description": "ordering options when selecting data from \"validators\"", "fields": null }, - { - "inputFields": [ - { - "name": "operator_address", - "defaultValue": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "description": null - } - ], - "kind": "INPUT_OBJECT", - "possibleTypes": null, - "interfaces": null, - "name": "validators_pk_columns_input", - "enumValues": null, - "description": "primary key columns input for table: \"validators\"", - "fields": null - }, { "inputFields": null, "kind": "ENUM", From 5c304a9edd3a34fac1af596221f50bf318e9cae4 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 20:00:54 +0700 Subject: [PATCH 07/10] added: reward to piechart --- scan/src/components/PieChart.re | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scan/src/components/PieChart.re b/scan/src/components/PieChart.re index d50e3bec5a..db1a795fe4 100644 --- a/scan/src/components/PieChart.re +++ b/scan/src/components/PieChart.re @@ -52,7 +52,7 @@ let renderSegment = (offset, angle, color) => [@react.component] let make = (~size, ~availableBalance, ~balanceAtStake, ~reward, ~unbonding) => { - let totalBalance = availableBalance +. balanceAtStake +. unbonding; + let totalBalance = availableBalance +. balanceAtStake +. unbonding +. reward; let balanceAtStakeAngle = totalBalance == 0. ? 0. : 360. *. balanceAtStake /. totalBalance; let unbondingAngle = totalBalance == 0. ? 0. : 360. *. unbonding /. totalBalance; let rewardAngle = totalBalance == 0. ? 0. : 360. *. reward /. totalBalance; From 0f4d9f03286bbd99fa9ee503078d5ce5881fddcf Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 20:55:43 +0700 Subject: [PATCH 08/10] updated: variable usage and graphql coin parsing function --- scan/src/pages/AccountIndexPage.re | 37 ++++++++++--------------- scan/src/subscriptions/DelegationSub.re | 8 +++--- scan/src/subscriptions/GraphQLParser.re | 6 ++++ scan/src/subscriptions/UnbondingSub.re | 2 +- 4 files changed, 25 insertions(+), 28 deletions(-) diff --git a/scan/src/pages/AccountIndexPage.re b/scan/src/pages/AccountIndexPage.re index 47f3128aef..fd017f94c5 100644 --- a/scan/src/pages/AccountIndexPage.re +++ b/scan/src/pages/AccountIndexPage.re @@ -118,20 +118,21 @@ let make = (~address, ~hashtag: Route.account_tab_t) => let accountSub = AccountSub.get(address); let infoSub = React.useContext(GlobalContext.context); let balanceAtStakeSub = DelegationSub.getTotalStakeByDelegator(address); - let unbondingAmountSub = UnbondingSub.getUnBondingBalance(address); + let unbondingSub = UnbondingSub.getUnbondingBalance(address); let%Sub info = infoSub; let%Sub account = accountSub; let%Sub balanceAtStake = balanceAtStakeSub; - let%Sub unbondingAmount = unbondingAmountSub; + let%Sub unbonding = unbondingSub; let availableBalance = account.balance->Coin.getBandAmountFromCoins; let usdPrice = info.financial.usdPrice; - let totalBalance = - availableBalance - +. balanceAtStake.amount->Coin.getBandAmountFromCoin - +. balanceAtStake.reward->Coin.getBandAmountFromCoin - +. unbondingAmount->Coin.getBandAmountFromCoin; + + let balanceAtStakeAmount = balanceAtStake.amount->Coin.getBandAmountFromCoin; + let rewardAmount = balanceAtStake.reward->Coin.getBandAmountFromCoin; + let unbondingAmount = unbonding->Coin.getBandAmountFromCoin; + + let totalBalance = availableBalance +. balanceAtStakeAmount +. rewardAmount +. unbondingAmount; <> @@ -162,9 +163,9 @@ let make = (~address, ~hashtag: Route.account_tab_t) => Coin.getBandAmountFromCoin} - reward={balanceAtStake.reward->Coin.getBandAmountFromCoin} - unbonding={unbondingAmount->Coin.getBandAmountFromCoin} + balanceAtStake=balanceAtStakeAmount + reward=rewardAmount + unbonding=unbondingAmount /> @@ -174,26 +175,16 @@ let make = (~address, ~hashtag: Route.account_tab_t) => {balanceDetail( "BALANCE AT STAKE", - balanceAtStake.amount->Coin.getBandAmountFromCoin, + balanceAtStakeAmount, usdPrice, Colors.chartBalanceAtStake, )} - {balanceDetail( - "UNBONDING AMOUNT", - unbondingAmount->Coin.getBandAmountFromCoin, - usdPrice, - Colors.blue4, - )} + {balanceDetail("UNBONDING AMOUNT", unbondingAmount, usdPrice, Colors.blue4)} - {balanceDetail( - "REWARD", - balanceAtStake.reward->Coin.getBandAmountFromCoin, - usdPrice, - Colors.chartReward, - )} + {balanceDetail("REWARD", rewardAmount, usdPrice, Colors.chartReward)}
diff --git a/scan/src/subscriptions/DelegationSub.re b/scan/src/subscriptions/DelegationSub.re index e5ffc53d1d..a80f36ec9a 100644 --- a/scan/src/subscriptions/DelegationSub.re +++ b/scan/src/subscriptions/DelegationSub.re @@ -21,8 +21,8 @@ module StakeConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $delegator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {delegator_address: {_eq: $delegator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.coinWithDefault") - reward @bsDecoder(fn: "GraphQLParser.coinWithDefault") + amount @bsDecoder(fn: "GraphQLParser.coinExn") + reward @bsDecoder(fn: "GraphQLParser.coinExn") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") @@ -62,8 +62,8 @@ module DelegatorsByValidatorConfig = [%graphql {| subscription Stake($limit: Int!, $offset: Int!, $validator_address: String!) { delegations_view(offset: $offset, limit: $limit, order_by: {amount: desc}, where: {validator_address: {_eq: $validator_address}}) @bsRecord { - amount @bsDecoder(fn: "GraphQLParser.coinWithDefault") - reward @bsDecoder(fn: "GraphQLParser.coinWithDefault") + amount @bsDecoder(fn: "GraphQLParser.coinExn") + reward @bsDecoder(fn: "GraphQLParser.coinExn") sharePercentage: share_percentage @bsDecoder(fn: "GraphQLParser.floatWithDefault") delegatorAddress: delegator_address @bsDecoder(fn: "GraphQLParser.addressExn") validatorAddress: validator_address @bsDecoder(fn: "GraphQLParser.addressExn") diff --git a/scan/src/subscriptions/GraphQLParser.re b/scan/src/subscriptions/GraphQLParser.re index e419810ce8..f0f70f8ca7 100644 --- a/scan/src/subscriptions/GraphQLParser.re +++ b/scan/src/subscriptions/GraphQLParser.re @@ -20,6 +20,12 @@ let coinRegEx = "([0-9]+)([a-z][a-z0-9/]{2,31})" |> Js.Re.fromString; let coin = str => { str |> Js.Json.decodeNumber |> Belt_Option.getExn |> Coin.newUBANDFromAmount; }; +let coinExn = jsonOpt => { + jsonOpt + |> Belt_Option.flatMap(_, Js.Json.decodeNumber) + |> Belt.Option.getExn + |> Coin.newUBANDFromAmount; +}; let coinWithDefault = jsonOpt => { jsonOpt |> Belt_Option.flatMap(_, Js.Json.decodeNumber) diff --git a/scan/src/subscriptions/UnbondingSub.re b/scan/src/subscriptions/UnbondingSub.re index f734aa0162..f41f0f5229 100644 --- a/scan/src/subscriptions/UnbondingSub.re +++ b/scan/src/subscriptions/UnbondingSub.re @@ -14,7 +14,7 @@ module SingleConfig = [%graphql |} ]; -let getUnBondingBalance = delegatorAddress => { +let getUnbondingBalance = delegatorAddress => { let (result, _) = ApolloHooks.useSubscription( SingleConfig.definition, From 2b62439d50b0ae598b2f7b774f731df71f27de25 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 21:15:22 +0700 Subject: [PATCH 09/10] fixed: graphqlparser coin argument --- scan/src/subscriptions/GraphQLParser.re | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scan/src/subscriptions/GraphQLParser.re b/scan/src/subscriptions/GraphQLParser.re index f0f70f8ca7..8ce6f32d03 100644 --- a/scan/src/subscriptions/GraphQLParser.re +++ b/scan/src/subscriptions/GraphQLParser.re @@ -17,8 +17,8 @@ let hash = json => json |> Js.Json.decodeString |> Belt.Option.getExn |> Js.String.substr(~from=2) |> Hash.fromHex; let coinRegEx = "([0-9]+)([a-z][a-z0-9/]{2,31})" |> Js.Re.fromString; -let coin = str => { - str |> Js.Json.decodeNumber |> Belt_Option.getExn |> Coin.newUBANDFromAmount; +let coin = json => { + json |> Js.Json.decodeNumber |> Belt_Option.getExn |> Coin.newUBANDFromAmount; }; let coinExn = jsonOpt => { jsonOpt From 8314d1bc843dd3f09fe78cf49348cd2ed8c6b6b5 Mon Sep 17 00:00:00 2001 From: tansawit Date: Mon, 18 May 2020 21:25:33 +0700 Subject: [PATCH 10/10] updated: bonded token count variable --- scan/src/pages/ValidatorIndexPage.re | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scan/src/pages/ValidatorIndexPage.re b/scan/src/pages/ValidatorIndexPage.re index a667b718ee..f75c46f148 100644 --- a/scan/src/pages/ValidatorIndexPage.re +++ b/scan/src/pages/ValidatorIndexPage.re @@ -94,7 +94,9 @@ let make = (~address, ~hashtag: Route.validator_tab_t) => let validatorSub = ValidatorSub.get(address); let bondedTokenCountSub = ValidatorSub.getTotalBondedAmount(); let%Sub validator = validatorSub; - let%Sub bondedTokenCount = bondedTokenCountSub; + let%Sub rawBondedTokenCount = bondedTokenCountSub; + + let bondedTokenCount = rawBondedTokenCount.amount; <> @@ -143,10 +145,7 @@ let make = (~address, ~hashtag: Route.validator_tab_t) => {kvRow( "VOTING POWER", VCode( - ( - bondedTokenCount.amount > 0. - ? validator.votingPower *. 100. /. bondedTokenCount.amount : 0. - ) + (bondedTokenCount > 0. ? validator.votingPower *. 100. /. bondedTokenCount : 0.) ->Format.fPretty ++ "% (" ++ validator.votingPower->Format.fPretty