diff --git a/Cargo.toml b/Cargo.toml index c86dee9da9033ad086f09a47241fdc8871b2c0e4..5fe05d3bcd1de716526c6a8352343fb4b6184362 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] -authors = ['librelois <c@elo.tf>'] +authors = ["librelois <c@elo.tf>", "tuxmain <tuxmain@zettascript.org>"] edition = "2021" -license = 'AGPL-3.0' +license = "AGPL-3.0" name = "gcli" -repository = 'https://git.duniter.org/clients/rust/gcli-v2s' +repository = "https://git.duniter.org/clients/rust/gcli-v2s" version = "0.1.0" [dependencies] diff --git a/README.md b/README.md index d627d14e3a3fe2de9abf03f91a2187b2f562972b..879c4d7772667fcee9e8dc55ccc9b04241dc7611 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Send 10 ÄžD from Alice to Ferdie: List certifications and session keys that will expire within one month: - cargo run -- --url wss://gdev.librelois.fr:443/ws expire --blocks 432000 + cargo run -- --url wss://gdev.p2p.legal:443/ws expire --blocks 432000 ### Smith @@ -35,6 +35,6 @@ Now the command `duniter-rpc` will open an SSH session and a bridge to your RPC When your node is ready to forge blocks, rotate keys and go online: ```bash -gcli update-keys +gcli --secret "my secret phrase" update-keys gcli --secret "my secret phrase" go-online ``` diff --git a/res/indexer-queries.graphql b/res/indexer-queries.graphql index 0e979ae09a076c346ad6848380f9c702e64ebabe..8d4272d2ce60aab55235430ca1262db8a784e906 100644 --- a/res/indexer-queries.graphql +++ b/res/indexer-queries.graphql @@ -1,5 +1,11 @@ query IdentityNameByPubkey($pubkey: String!) { - identity_by_pk(id: $pubkey) { + identity(where: {pubkey: {_eq: $pubkey}}) { name } } + +query IdentityPubkeyByName($name: String!) { + identity_by_pk(name: $name) { + pubkey + } +} diff --git a/res/indexer-schema.json b/res/indexer-schema.json new file mode 100644 index 0000000000000000000000000000000000000000..db53e7b6103b07d622a36982c297d3ea4bd36666 --- /dev/null +++ b/res/indexer-schema.json @@ -0,0 +1 @@ +{"data":{"__schema":{"queryType":{"name":"query_root"},"mutationType":{"name":"mutation_root"},"subscriptionType":{"name":"subscription_root"},"types":[{"kind":"SCALAR","name":"Boolean","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","description":"Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Float","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"Float_comparison_exp","description":"Boolean expression to compare columns of type \"Float\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","description":"Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"String_comparison_exp","description":"Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_ilike","description":"does the column match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_iregex","description":"does the column match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_like","description":"does the column match the given pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nilike","description":"does the column NOT match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_niregex","description":"does the column NOT match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nlike","description":"does the column NOT match the given pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nregex","description":"does the column NOT match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nsimilar","description":"does the column NOT match the given SQL regular expression","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_regex","description":"does the column match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_similar","description":"does the column match the given SQL regular expression","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":null,"fields":[{"name":"args","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRepeatable","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":null,"fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":null,"fields":[{"name":"args","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":null,"fields":[{"name":"defaultValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":null,"fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Directive","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":null,"fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"__EnumValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"__Field","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ENUM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"account","description":"Table of accounts.","fields":[{"name":"block","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"has_identity","description":"A computed field, executes function \"has_identity\"","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"identity","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transactions_issued","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"transactions_issued_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transactions_received","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"transactions_received_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_aggregate","description":"aggregated selection of \"account\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_aggregate_fields","description":"aggregate fields of \"account\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"account_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_avg_fields","description":"aggregate avg on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_bool_exp","description":"Boolean expression to filter rows from the table \"account\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null}}},"defaultValue":null},{"name":"block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"has_identity","description":null,"type":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null},"defaultValue":null},{"name":"identity","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null},{"name":"killed_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"killed_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"pubkey","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"transactions_issued","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null},{"name":"transactions_issued_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"transactions_received","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null},{"name":"transactions_received_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_aggregate_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"account_constraint","description":"unique or primary key constraints on table \"account\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id_key","description":"unique or primary key constraint on columns \"pubkey\"","isDeprecated":false,"deprecationReason":null},{"name":"account_pkey","description":"unique or primary key constraint on columns \"pubkey\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_inc_input","description":"input type for incrementing numeric columns in table \"account\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where account was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"killed_on","description":"Block number where account was killed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_insert_input","description":"input type for inserting data into table \"account\"","fields":null,"inputFields":[{"name":"block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where account was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"identity","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"killed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"killed_on","description":"Block number where account was killed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"transactions_issued","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"transactions_received","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_arr_rel_insert_input","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_mutation_response","description":"response of any mutation on the table \"account\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"account\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"account_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_on_conflict","description":"on_conflict condition type for table \"account\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_order_by","description":"Ordering options when selecting data from \"account\".","fields":null,"inputFields":[{"name":"block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"has_identity","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"identity","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null},"defaultValue":null},{"name":"killed_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"killed_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"transactions_issued_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"transactions_received_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_aggregate_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_pk_columns_input","description":"primary key columns input for table: account","fields":null,"inputFields":[{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"account_select_column","description":"select columns of table \"account\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"killed_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_set_input","description":"input type for updating data in table \"account\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where account was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"killed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"killed_on","description":"Block number where account was killed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_stream_cursor_input","description":"Streaming cursor of the table \"account\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where account was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"killed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"killed_on","description":"Block number where account was killed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_sum_fields","description":"aggregate sum on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"account_update_column","description":"update columns of table \"account\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"killed_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"account_updates","description":null,"fields":null,"inputFields":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"account_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"account_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"account_variance_fields","description":"aggregate variance on columns","fields":[{"name":"created_on","description":"Block number where account was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"killed_on","description":"Block number where account was killed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block","description":"Table of blocks.","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamp","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hash","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_aggregate","description":"aggregated selection of \"block\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_aggregate_fields","description":"aggregate fields of \"block\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"block_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_avg_fields","description":"aggregate avg on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_bool_exp","description":"Boolean expression to filter rows from the table \"block\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamp_comparison_exp","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"hash","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"number","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"block_constraint","description":"unique or primary key constraints on table \"block\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"block_hash_key","description":"unique or primary key constraint on columns \"hash\"","isDeprecated":false,"deprecationReason":null},{"name":"block_pkey","description":"unique or primary key constraint on columns \"number\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_inc_input","description":"input type for incrementing numeric columns in table \"block\"","fields":null,"inputFields":[{"name":"number","description":"Number of the block in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_insert_input","description":"input type for inserting data into table \"block\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"number","description":"Number of the block in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hash","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hash","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_mutation_response","description":"response of any mutation on the table \"block\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"block\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"block_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_on_conflict","description":"on_conflict condition type for table \"block\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_order_by","description":"Ordering options when selecting data from \"block\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"hash","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"number","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_pk_columns_input","description":"primary key columns input for table: block","fields":null,"inputFields":[{"name":"number","description":"Number of the block in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"block_select_column","description":"select columns of table \"block\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"hash","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"number","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_set_input","description":"input type for updating data in table \"block\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"number","description":"Number of the block in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_stream_cursor_input","description":"Streaming cursor of the table \"block\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"data","description":"Data contains `extrinsics` and `events` of the block. Exemple for querying specific data: `data(path: \"extrinsics[0].isSigned\")`.","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"number","description":"Number of the block in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_sum_fields","description":"aggregate sum on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"block_update_column","description":"update columns of table \"block\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"hash","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"number","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"block_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"block_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"block_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"block_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"block_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"block_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"block_variance_fields","description":"aggregate variance on columns","fields":[{"name":"number","description":"Number of the block in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification","description":"Table of certifications.","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_on_block","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"issuer","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"receiver","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_aggregate","description":"aggregated selection of \"certification\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_aggregate_fields","description":"aggregate fields of \"certification\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"certification_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_aggregate_order_by","description":"order by aggregate values of table \"certification\"","fields":null,"inputFields":[{"name":"avg","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_avg_order_by","ofType":null},"defaultValue":null},{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_min_order_by","ofType":null},"defaultValue":null},{"name":"stddev","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_stddev_order_by","ofType":null},"defaultValue":null},{"name":"stddev_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_stddev_pop_order_by","ofType":null},"defaultValue":null},{"name":"stddev_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_stddev_samp_order_by","ofType":null},"defaultValue":null},{"name":"sum","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_sum_order_by","ofType":null},"defaultValue":null},{"name":"var_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_var_pop_order_by","ofType":null},"defaultValue":null},{"name":"var_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_var_samp_order_by","ofType":null},"defaultValue":null},{"name":"variance","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_variance_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"certification\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"certification_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_avg_fields","description":"aggregate avg on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_avg_order_by","description":"order by avg() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_bool_exp","description":"Boolean expression to filter rows from the table \"certification\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"certification_constraint","description":"unique or primary key constraints on table \"certification\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"certification_pkey","description":"unique or primary key constraint on columns \"receiver_name\", \"issuer_name\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_inc_input","description":"input type for incrementing numeric columns in table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_insert_input","description":"input type for inserting data into table \"certification\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_max_order_by","description":"order by max() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_min_order_by","description":"order by min() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_mutation_response","description":"response of any mutation on the table \"certification\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_on_conflict","description":"on_conflict condition type for table \"certification\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_order_by","description":"Ordering options when selecting data from \"certification\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_pk_columns_input","description":"primary key columns input for table: certification","fields":null,"inputFields":[{"name":"issuer_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"certification_select_column","description":"select columns of table \"certification\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"issuer_name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"receiver_name","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_set_input","description":"input type for updating data in table \"certification\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_stddev_order_by","description":"order by stddev() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_stddev_pop_order_by","description":"order by stddev_pop() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_stddev_samp_order_by","description":"order by stddev_samp() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_stream_cursor_input","description":"Streaming cursor of the table \"certification\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"issuer_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_sum_fields","description":"aggregate sum on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_sum_order_by","description":"order by sum() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"certification_update_column","description":"update columns of table \"certification\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"issuer_name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"receiver_name","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_updates","description":null,"fields":null,"inputFields":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"certification_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"certification_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_var_pop_order_by","description":"order by var_pop() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_var_samp_order_by","description":"order by var_samp() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"certification_variance_fields","description":"aggregate variance on columns","fields":[{"name":"created_on","description":"Block number where certification was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"certification_variance_order_by","description":"order by variance() on columns of table \"certification\"","fields":null,"inputFields":[{"name":"created_on","description":"Block number where certification was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"cursor_ordering","description":"ordering argument of a cursor","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":"ascending ordering of the cursor","isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":"descending ordering of the cursor","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"identity","description":"Table of identities.","fields":[{"name":"account","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"certifications_issued","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"certifications_issued_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"certifications_received","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"certifications_received_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on_block","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name of the identity.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on_block","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on_block","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_aggregate","description":"aggregated selection of \"identity\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_aggregate_fields","description":"aggregate fields of \"identity\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"identity_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_avg_fields","description":"aggregate avg on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_bool_exp","description":"Boolean expression to filter rows from the table \"identity\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null},{"name":"certifications_issued","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null},{"name":"certifications_issued_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"certifications_received","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null},{"name":"certifications_received_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"confirmed_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"confirmed_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"confirmed_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"pubkey","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"revoked_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"revoked_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"revoked_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"validated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"validated_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"validated_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"identity_constraint","description":"unique or primary key constraints on table \"identity\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"identity_id_key","description":"unique or primary key constraint on columns \"pubkey\"","isDeprecated":false,"deprecationReason":null},{"name":"identity_key_key","description":"unique or primary key constraint on columns \"pubkey\"","isDeprecated":false,"deprecationReason":null},{"name":"identity_name_key","description":"unique or primary key constraint on columns \"name\"","isDeprecated":false,"deprecationReason":null},{"name":"identity_pkey","description":"unique or primary key constraint on columns \"name\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_inc_input","description":"input type for incrementing numeric columns in table \"identity\"","fields":null,"inputFields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"revoked_on","description":"Block number where identity was revoked.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"validated_on","description":"Block number where identity was validated.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_insert_input","description":"input type for inserting data into table \"identity\"","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"certifications_issued","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"certifications_received","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"confirmed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"confirmed_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"name","description":"Name of the identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"revoked_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"revoked_on","description":"Block number where identity was revoked.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"revoked_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"validated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"validated_on","description":"Block number where identity was validated.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"validated_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_max_fields","description":"aggregate max on columns","fields":[{"name":"confirmed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name of the identity.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_min_fields","description":"aggregate min on columns","fields":[{"name":"confirmed_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name of the identity.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_mutation_response","description":"response of any mutation on the table \"identity\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"identity\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"identity_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_on_conflict","description":"on_conflict condition type for table \"identity\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_order_by","description":"Ordering options when selecting data from \"identity\".","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null},"defaultValue":null},{"name":"certifications_issued_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"certifications_received_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"certification_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"confirmed_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"confirmed_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"confirmed_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"revoked_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"revoked_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"revoked_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null},{"name":"validated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"validated_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"validated_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_pk_columns_input","description":"primary key columns input for table: identity","fields":null,"inputFields":[{"name":"name","description":"Name of the identity.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"identity_select_column","description":"select columns of table \"identity\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"confirmed_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"revoked_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"validated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_set_input","description":"input type for updating data in table \"identity\"","fields":null,"inputFields":[{"name":"confirmed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"name","description":"Name of the identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"revoked_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"revoked_on","description":"Block number where identity was revoked.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"validated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"validated_on","description":"Block number where identity was validated.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_stream_cursor_input","description":"Streaming cursor of the table \"identity\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"confirmed_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"confirmed_on","description":"Block number where identity was confirmed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"name","description":"Name of the identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pubkey","description":"Pubkey of the account associated to this identity.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"revoked_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"revoked_on","description":"Block number where identity was revoked.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"validated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"validated_on","description":"Block number where identity was validated.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_sum_fields","description":"aggregate sum on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"identity_update_column","description":"update columns of table \"identity\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"confirmed_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"confirmed_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"pubkey","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"revoked_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"validated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"identity_updates","description":null,"fields":null,"inputFields":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"identity_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"identity_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"identity_variance_fields","description":"aggregate variance on columns","fields":[{"name":"confirmed_on","description":"Block number where identity was confirmed.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revoked_on","description":"Block number where identity was revoked.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validated_on","description":"Block number where identity was validated.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"jsonb","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"jsonb_cast_exp","description":null,"fields":null,"inputFields":[{"name":"String","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","description":"Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_cast","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_cast_exp","ofType":null},"defaultValue":null},{"name":"_contained_in","description":"is the column contained in the given json value","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_contains","description":"does the column contain the given json value at the top level","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_has_key","description":"does the string exist as a top-level key in the column","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_has_keys_all","description":"do all of these strings exist as top-level keys in the column","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_has_keys_any","description":"do any of these strings exist as top-level keys in the column","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"mutation_root","description":"mutation root","fields":[{"name":"delete_account","description":"delete data from the table: \"account\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_account_by_pk","description":"delete single row from the table: \"account\"","args":[{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_block","description":"delete data from the table: \"block\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_block_by_pk","description":"delete single row from the table: \"block\"","args":[{"name":"number","description":"Number of the block in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_certification","description":"delete data from the table: \"certification\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_certification_by_pk","description":"delete single row from the table: \"certification\"","args":[{"name":"issuer_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_identity","description":"delete data from the table: \"identity\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_identity_by_pk","description":"delete single row from the table: \"identity\"","args":[{"name":"name","description":"Name of the identity.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_parameters","description":"delete data from the table: \"parameters\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_parameters_by_pk","description":"delete single row from the table: \"parameters\"","args":[{"name":"key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_transaction","description":"delete data from the table: \"transaction\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_transaction_by_pk","description":"delete single row from the table: \"transaction\"","args":[{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_account","description":"insert data into the table: \"account\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"account_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_account_one","description":"insert a single row into the table: \"account\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"account_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_block","description":"insert data into the table: \"block\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"block_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_block_one","description":"insert a single row into the table: \"block\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"block_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_certification","description":"insert data into the table: \"certification\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"certification_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_certification_one","description":"insert a single row into the table: \"certification\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"certification_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_identity","description":"insert data into the table: \"identity\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"identity_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_identity_one","description":"insert a single row into the table: \"identity\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"identity_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_parameters","description":"insert data into the table: \"parameters\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"parameters_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_parameters_one","description":"insert a single row into the table: \"parameters\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"parameters_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_transaction","description":"insert data into the table: \"transaction\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"transaction_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_transaction_one","description":"insert a single row into the table: \"transaction\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"transaction_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_account","description":"update data of the table: \"account\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"account_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"account_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_account_by_pk","description":"update single row of the table: \"account\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"account_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"account_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_account_many","description":"update multiples rows of table: \"account\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"account_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_block","description":"update data of the table: \"block\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"block_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"block_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"block_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"block_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"block_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_block_by_pk","description":"update single row of the table: \"block\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"block_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"block_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"block_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"block_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"block_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"block_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_block_many","description":"update multiples rows of table: \"block\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"block_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_certification","description":"update data of the table: \"certification\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"certification_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"certification_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_certification_by_pk","description":"update single row of the table: \"certification\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"certification_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"certification_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_certification_many","description":"update multiples rows of table: \"certification\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"certification_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_identity","description":"update data of the table: \"identity\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"identity_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"identity_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_identity_by_pk","description":"update single row of the table: \"identity\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"identity_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"identity_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_identity_many","description":"update multiples rows of table: \"identity\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"identity_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_parameters","description":"update data of the table: \"parameters\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"parameters_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_parameters_by_pk","description":"update single row of the table: \"parameters\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"parameters_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_parameters_many","description":"update multiples rows of table: \"parameters\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"parameters_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_transaction","description":"update data of the table: \"transaction\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"transaction_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"transaction_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_transaction_by_pk","description":"update single row of the table: \"transaction\"","args":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"transaction_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"transaction_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_transaction_many","description":"update multiples rows of table: \"transaction\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"transaction_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"order_by","description":"column ordering options","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asc","description":"in ascending order, nulls last","isDeprecated":false,"deprecationReason":null},{"name":"asc_nulls_first","description":"in ascending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"asc_nulls_last","description":"in ascending order, nulls last","isDeprecated":false,"deprecationReason":null},{"name":"desc","description":"in descending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"desc_nulls_first","description":"in descending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"desc_nulls_last","description":"in descending order, nulls last","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"parameters","description":"Table of key/value parameters.","fields":[{"name":"key","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"parameters_aggregate","description":"aggregated selection of \"parameters\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"parameters_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"parameters_aggregate_fields","description":"aggregate fields of \"parameters\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"parameters_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"parameters_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"value","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","description":"Boolean expression to filter rows from the table \"parameters\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null}}},"defaultValue":null},{"name":"key","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"parameters_constraint","description":"unique or primary key constraints on table \"parameters\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"parameters_pkey","description":"unique or primary key constraint on columns \"key\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"value","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"value","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_insert_input","description":"input type for inserting data into table \"parameters\"","fields":null,"inputFields":[{"name":"key","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"parameters_max_fields","description":"aggregate max on columns","fields":[{"name":"key","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"parameters_min_fields","description":"aggregate min on columns","fields":[{"name":"key","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"parameters_mutation_response","description":"response of any mutation on the table \"parameters\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_on_conflict","description":"on_conflict condition type for table \"parameters\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_order_by","description":"Ordering options when selecting data from \"parameters\".","fields":null,"inputFields":[{"name":"key","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_pk_columns_input","description":"primary key columns input for table: parameters","fields":null,"inputFields":[{"name":"key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"value","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"parameters_select_column","description":"select columns of table \"parameters\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"key","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"value","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_set_input","description":"input type for updating data in table \"parameters\"","fields":null,"inputFields":[{"name":"key","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_stream_cursor_input","description":"Streaming cursor of the table \"parameters\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"key","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"parameters_update_column","description":"update columns of table \"parameters\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"key","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"value","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"parameters_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"parameters_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"parameters_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"parameters_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"query_root","description":null,"fields":[{"name":"account","description":"fetch data from the table: \"account\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_aggregate","description":"fetch aggregated fields from the table: \"account\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_by_pk","description":"fetch data from the table: \"account\" using primary key columns","args":[{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"block","description":"fetch data from the table: \"block\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"block_aggregate","description":"fetch aggregated fields from the table: \"block\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"block_by_pk","description":"fetch data from the table: \"block\" using primary key columns","args":[{"name":"number","description":"Number of the block in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"certification","description":"fetch data from the table: \"certification\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"certification_aggregate","description":"fetch aggregated fields from the table: \"certification\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"certification_by_pk","description":"fetch data from the table: \"certification\" using primary key columns","args":[{"name":"issuer_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"identity","description":"fetch data from the table: \"identity\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"identity_aggregate","description":"fetch aggregated fields from the table: \"identity\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identity_by_pk","description":"fetch data from the table: \"identity\" using primary key columns","args":[{"name":"name","description":"Name of the identity.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":"fetch data from the table: \"parameters\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameters_aggregate","description":"fetch aggregated fields from the table: \"parameters\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameters_by_pk","description":"fetch data from the table: \"parameters\" using primary key columns","args":[{"name":"key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"search_identity","description":"execute function \"search_identity\" which returns \"identity\"","args":[{"name":"args","description":"input parameters for function \"search_identity\"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"search_identity_args","ofType":null}},"defaultValue":null},{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"search_identity_aggregate","description":"execute function \"search_identity\" and query aggregates on result of table type \"identity\"","args":[{"name":"args","description":"input parameters for function \"search_identity_aggregate\"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"search_identity_args","ofType":null}},"defaultValue":null},{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction","description":"fetch data from the table: \"transaction\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction_aggregate","description":"fetch aggregated fields from the table: \"transaction\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction_by_pk","description":"fetch data from the table: \"transaction\" using primary key columns","args":[{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"search_identity_args","description":null,"fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"subscription_root","description":null,"fields":[{"name":"account","description":"fetch data from the table: \"account\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_aggregate","description":"fetch aggregated fields from the table: \"account\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"account_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_by_pk","description":"fetch data from the table: \"account\" using primary key columns","args":[{"name":"pubkey","description":"Pubkey of the account.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_stream","description":"fetch data from the table in a streaming manner: \"account\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"account_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"block","description":"fetch data from the table: \"block\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"block_aggregate","description":"fetch aggregated fields from the table: \"block\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"block_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"block_by_pk","description":"fetch data from the table: \"block\" using primary key columns","args":[{"name":"number","description":"Number of the block in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"block","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"block_stream","description":"fetch data from the table in a streaming manner: \"block\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"block_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"certification","description":"fetch data from the table: \"certification\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"certification_aggregate","description":"fetch aggregated fields from the table: \"certification\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"certification_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"certification_by_pk","description":"fetch data from the table: \"certification\" using primary key columns","args":[{"name":"issuer_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"receiver_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"certification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"certification_stream","description":"fetch data from the table in a streaming manner: \"certification\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"certification_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"certification_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"certification","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"identity","description":"fetch data from the table: \"identity\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"identity_aggregate","description":"fetch aggregated fields from the table: \"identity\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identity_by_pk","description":"fetch data from the table: \"identity\" using primary key columns","args":[{"name":"name","description":"Name of the identity.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"identity_stream","description":"fetch data from the table in a streaming manner: \"identity\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":"fetch data from the table: \"parameters\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameters_aggregate","description":"fetch aggregated fields from the table: \"parameters\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"parameters_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameters_by_pk","description":"fetch data from the table: \"parameters\" using primary key columns","args":[{"name":"key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"parameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters_stream","description":"fetch data from the table in a streaming manner: \"parameters\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"parameters_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"parameters_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"parameters","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"search_identity","description":"execute function \"search_identity\" which returns \"identity\"","args":[{"name":"args","description":"input parameters for function \"search_identity\"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"search_identity_args","ofType":null}},"defaultValue":null},{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"search_identity_aggregate","description":"execute function \"search_identity\" and query aggregates on result of table type \"identity\"","args":[{"name":"args","description":"input parameters for function \"search_identity_aggregate\"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"search_identity_args","ofType":null}},"defaultValue":null},{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"identity_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"identity_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"identity_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"identity_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction","description":"fetch data from the table: \"transaction\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction_aggregate","description":"fetch aggregated fields from the table: \"transaction\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"transaction_by_pk","description":"fetch data from the table: \"transaction\" using primary key columns","args":[{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"transaction","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"transaction_stream","description":"fetch data from the table in a streaming manner: \"transaction\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"timestamp","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"timestamp_comparison_exp","description":"Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamp","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"timestamp","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamp","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"timestamptz","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","description":"Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction","description":"Table of transactions.","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_on_block","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"block","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"issuer","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_pubkey","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"receiver","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"account","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_pubkey","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_aggregate","description":"aggregated selection of \"transaction\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_aggregate_fields","description":"aggregate fields of \"transaction\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"transaction_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_aggregate_order_by","description":"order by aggregate values of table \"transaction\"","fields":null,"inputFields":[{"name":"avg","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_avg_order_by","ofType":null},"defaultValue":null},{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_min_order_by","ofType":null},"defaultValue":null},{"name":"stddev","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_stddev_order_by","ofType":null},"defaultValue":null},{"name":"stddev_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_stddev_pop_order_by","ofType":null},"defaultValue":null},{"name":"stddev_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_stddev_samp_order_by","ofType":null},"defaultValue":null},{"name":"sum","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_sum_order_by","ofType":null},"defaultValue":null},{"name":"var_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_var_pop_order_by","ofType":null},"defaultValue":null},{"name":"var_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_var_samp_order_by","ofType":null},"defaultValue":null},{"name":"variance","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_variance_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"transaction\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"transaction_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_avg_fields","description":"aggregate avg on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_avg_order_by","description":"order by avg() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","description":"Boolean expression to filter rows from the table \"transaction\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null}}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"INPUT_OBJECT","name":"Float_comparison_exp","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_bool_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_bool_exp","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"transaction_constraint","description":"unique or primary key constraints on table \"transaction\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"transaction_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_inc_input","description":"input type for incrementing numeric columns in table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_insert_input","description":"input type for inserting data into table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_max_fields","description":"aggregate max on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_pubkey","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_pubkey","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_max_order_by","description":"order by max() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_min_fields","description":"aggregate min on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issuer_pubkey","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"receiver_pubkey","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_min_order_by","description":"order by min() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_mutation_response","description":"response of any mutation on the table \"transaction\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"transaction","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_on_conflict","description":"on_conflict condition type for table \"transaction\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"transaction_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_order_by","description":"Ordering options when selecting data from \"transaction\".","fields":null,"inputFields":[{"name":"amount","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on_block","description":null,"type":{"kind":"INPUT_OBJECT","name":"block_order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"issuer","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"receiver","description":null,"type":{"kind":"INPUT_OBJECT","name":"account_order_by","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_pk_columns_input","description":"primary key columns input for table: transaction","fields":null,"inputFields":[{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"transaction_select_column","description":"select columns of table \"transaction\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"amount","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"comment","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"issuer_pubkey","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"receiver_pubkey","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_set_input","description":"input type for updating data in table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_stddev_order_by","description":"order by stddev() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_stddev_pop_order_by","description":"order by stddev_pop() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_stddev_samp_order_by","description":"order by stddev_samp() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_stream_cursor_input","description":"Streaming cursor of the table \"transaction\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"comment","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"issuer_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"receiver_pubkey","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_sum_fields","description":"aggregate sum on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_sum_order_by","description":"order by sum() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"transaction_update_column","description":"update columns of table \"transaction\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"amount","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"comment","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"issuer_pubkey","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"receiver_pubkey","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_updates","description":null,"fields":null,"inputFields":[{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"transaction_inc_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"transaction_set_input","ofType":null},"defaultValue":null},{"name":"where","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"transaction_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_var_pop_order_by","description":"order by var_pop() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_var_samp_order_by","description":"order by var_samp() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"transaction_variance_fields","description":"aggregate variance on columns","fields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_on","description":"Block number where transaction was created.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"transaction_variance_order_by","description":"order by variance() on columns of table \"transaction\"","fields":null,"inputFields":[{"name":"amount","description":"Amount of the transaction. 100 units = 1 Äž1.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_on","description":"Block number where transaction was created.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":"Primary Key `id` is used for postgreSQL and Hasura relationship, not related to any value in substrate.","type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null}],"directives":[{"name":"include","description":"whether this query should be included","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"whether this query should be skipped","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"cached","description":"whether this query should be cached (Hasura Cloud only)","locations":["QUERY"],"args":[{"name":"ttl","description":"measured in seconds","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"60"},{"name":"refresh","description":"refresh the cache entry","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":"false"}]}]}}} \ No newline at end of file diff --git a/src/cache.rs b/src/cache.rs index 9fd4e84b88cbbc30ae8db9388e9a74f735e17607..88ac9ab42bfc480e5006782720f27e807ce5e94b 100644 --- a/src/cache.rs +++ b/src/cache.rs @@ -8,11 +8,11 @@ use std::collections::{hash_map, HashMap}; pub struct IdentityCache<'a> { client: &'a Client, identities: HashMap<u32, String>, - indexer: Option<(&'a reqwest::Client, &'a str)>, + indexer: Option<Indexer<'a>>, } impl<'a> IdentityCache<'a> { - pub fn new(client: &'a Client, indexer: Option<(&'a reqwest::Client, &'a str)>) -> Self { + pub fn new(client: &'a Client, indexer: Option<Indexer<'a>>) -> Self { Self { client, identities: HashMap::new(), @@ -40,35 +40,18 @@ impl<'a> IdentityCache<'a> { .ok_or_else(|| anyhow!("Identity {} not found", identity_id))? .owner_key .to_string(); - if let Some((gql_client, gql_url)) = self.indexer { - if let Ok(resp) = post_graphql::<IdentityNameByPubkey, _>( - gql_client, - gql_url, - identity_name_by_pubkey::Variables { - pubkey: pubkey.clone(), - }, - ) - .await - { - if let Some(data) = resp.data { - if let Some(identity) = data.identity_by_pk { - if let Some(name) = identity.name { - format!("“ {name} â€") - } else { - pubkey - } - } else { - pubkey - } + format!( + "“ {} â€", + if let Some(indexer) = &self.indexer { + if let Ok(Some(username)) = indexer.username_by_pubkey(&pubkey).await { + username } else { pubkey } } else { pubkey } - } else { - pubkey - } + ) }) .clone(), }) diff --git a/src/commands.rs b/src/commands.rs index 0ea4b716d223d65ecfee1082f9c1bd25ed99b9eb..976ef714690268c6c67d8aefa5268c44f7aaeeb5 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1,4 +1,5 @@ pub mod expire; +pub mod identity; pub mod net_test; pub mod oneshot; pub mod revocation; diff --git a/src/commands/expire.rs b/src/commands/expire.rs index 099ba88ea6d202a56b362983e5169f032b16f1c2..7e97a293a7bec3283d901995977641797bce4b45 100644 --- a/src/commands/expire.rs +++ b/src/commands/expire.rs @@ -1,4 +1,4 @@ -use crate::{cache, gdev, Args, Client}; +use crate::{cache, gdev, indexer::*, Args, Client}; use anyhow::Result; use futures::join; @@ -40,7 +40,10 @@ pub async fn monitor_expirations( if args.no_indexer { None } else { - Some((&gql_client, &args.indexer)) + Some(Indexer { + gql_client, + gql_url: &args.indexer, + }) }, ); diff --git a/src/commands/identity.rs b/src/commands/identity.rs new file mode 100644 index 0000000000000000000000000000000000000000..ef22673988d8d2f9083f23f355057f9cc2b0a3ac --- /dev/null +++ b/src/commands/identity.rs @@ -0,0 +1,89 @@ +use crate::{gdev, indexer::*, Args, Client}; + +use anyhow::{anyhow, Result}; +use sp_core::crypto::AccountId32; +use std::str::FromStr; + +pub async fn get_identity( + client: Client, + mut account_id: Option<AccountId32>, + mut identity_id: Option<u32>, + mut username: Option<String>, + args: &Args, +) -> Result<()> { + let parent_hash = client + .storage() + .fetch(&gdev::storage().system().parent_hash(), None) + .await? + .unwrap(); + + let gql_client = reqwest::Client::builder() + .user_agent("gcli/0.1.0") + .build()?; + + let indexer = if args.no_indexer { + None + } else { + Some(Indexer { + gql_client, + gql_url: &args.indexer, + }) + }; + + if let Some(account_id) = &account_id { + identity_id = client + .storage() + .fetch( + &gdev::storage().identity().identity_index_of(account_id), + Some(parent_hash), + ) + .await?; + } else if let Some(identity_id) = &identity_id { + account_id = client + .storage() + .fetch( + &gdev::storage().identity().identities(identity_id), + Some(parent_hash), + ) + .await? + .map(|idty| idty.owner_key); + } else if let Some(username) = &username { + let indexer = indexer.as_ref().ok_or(anyhow!( + "Cannot fetch identity from username without indexer." + ))?; + if let Some(pubkey) = indexer.pubkey_by_username(username).await? { + let some_account_id = AccountId32::from_str(&pubkey).map_err(|e| anyhow!(e))?; + identity_id = client + .storage() + .fetch( + &gdev::storage() + .identity() + .identity_index_of(&some_account_id), + Some(parent_hash), + ) + .await?; + account_id = Some(some_account_id); + } + } else { + return Err(anyhow!("One argument is needed to fetch the identity.")); + } + + println!( + "Account id: {}", + account_id + .as_ref() + .map_or(String::new(), AccountId32::to_string) + ); + println!( + "Identity id: {}", + identity_id.map_or(String::new(), |identity_id| format!("{identity_id}")) + ); + + if let (Some(indexer), Some(account_id), None) = (&indexer, &account_id, &username) { + username = indexer.username_by_pubkey(&account_id.to_string()).await?; + } + + println!("Username: {}", username.unwrap_or_default()); + + Ok(()) +} diff --git a/src/indexer.rs b/src/indexer.rs index 9183a45d96faf561be4fbdacff809aa36214f446..d66cd11c7ad656f5fce67ec528967ab85ff757e9 100644 --- a/src/indexer.rs +++ b/src/indexer.rs @@ -1,8 +1,50 @@ pub use graphql_client::{reqwest::post_graphql, GraphQLQuery}; +use anyhow::Result; + #[derive(GraphQLQuery)] #[graphql( - schema_path = "res/indexer-schema.graphql", + schema_path = "res/indexer-schema.json", query_path = "res/indexer-queries.graphql" )] pub struct IdentityNameByPubkey; + +#[derive(GraphQLQuery)] +#[graphql( + schema_path = "res/indexer-schema.json", + query_path = "res/indexer-queries.graphql" +)] +pub struct IdentityPubkeyByName; + +pub struct Indexer<'a> { + pub gql_client: reqwest::Client, + pub gql_url: &'a str, +} + +impl<'a> Indexer<'a> { + pub async fn username_by_pubkey(&self, pubkey: &str) -> Result<Option<String>> { + Ok(post_graphql::<IdentityNameByPubkey, _>( + &self.gql_client, + self.gql_url, + identity_name_by_pubkey::Variables { + pubkey: pubkey.to_string(), + }, + ) + .await? + .data + .and_then(|data| data.identity.into_iter().next().map(|idty| idty.name))) + } + + pub async fn pubkey_by_username(&self, username: &str) -> Result<Option<String>> { + Ok(post_graphql::<IdentityPubkeyByName, _>( + &self.gql_client, + self.gql_url, + identity_pubkey_by_name::Variables { + name: username.to_string(), + }, + ) + .await? + .data + .and_then(|data| data.identity_by_pk.map(|idty| idty.pubkey))) + } +} diff --git a/src/main.rs b/src/main.rs index ce25d9acd5701ff944a79db6843fa0a71dfd87fa..1f7ff54826fb1de43ec31864dc773d806fabeb2b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -57,7 +57,11 @@ pub struct Args { pub subcommand: Subcommand, /// Indexer URL - #[clap(short, long, default_value = "https://idx.gdev.cgeek.fr/v1/graphql")] + #[clap( + short, + long, + default_value = "https://gdev-indexer.p2p.legal/v1/graphql" + )] indexer: String, /// Do not use indexer #[clap(long)] @@ -103,6 +107,15 @@ pub enum Subcommand { #[clap(short, long, default_value_t = 100)] sessions: u32, }, + /// Fetch identity + Identity { + #[clap(short = 'p', long = "pubkey")] + account_id: Option<sp_core::crypto::AccountId32>, + #[clap(short = 'i', long = "identity")] + identity_id: Option<u32>, + #[clap(short = 'u', long = "username")] + username: Option<String>, + }, /// Generate a revocation document for the provided account GenRevocDoc, GoOffline, @@ -235,6 +248,20 @@ async fn main() -> Result<()> { Subcommand::Expire { blocks, sessions } => { commands::expire::monitor_expirations(client, blocks, sessions, &args).await? } + Subcommand::Identity { + ref account_id, + identity_id, + ref username, + } => { + commands::identity::get_identity( + client, + account_id.clone(), + identity_id, + username.clone(), + &args, + ) + .await? + } Subcommand::GenRevocDoc => { commands::revocation::gen_revoc_doc( &client,