diff --git a/block-streamer/README.md b/block-streamer/README.md new file mode 100644 index 000000000..98a9a0a86 --- /dev/null +++ b/block-streamer/README.md @@ -0,0 +1,8 @@ +// TODO: Improve README further + +Generating schema.json +graphql-client introspect-schema --output PATH_TO_SOMEWHERE HASURA_ENDPOINT/v1/graphql --header 'x-hasura-role: SOME_HASURA_ROLE' + +Generating Rust types file for query +graphql-client generate --schema-path PATH_TO_SCHEMA_JSON --response-derives 'Debug' --output-directory PATH_TO_GRAPHQL_QUERIES_FOLDER PATH_TO_QUERY_GRAPHQL_FILE +After the codegen comples, you may need to manually modify the file further to resolve issues such as "super::date" not being found. diff --git a/block-streamer/graphql/darunrs_near/get_bitmaps.graphql b/block-streamer/graphql/darunrs_near/get_bitmaps.graphql deleted file mode 100644 index 3709b6bf9..000000000 --- a/block-streamer/graphql/darunrs_near/get_bitmaps.graphql +++ /dev/null @@ -1,6 +0,0 @@ -query GetBitmapsExact($block_date: date, $receiver_ids: [String!], $limit: Int, $offset: Int) { - darunrs_near_bitmap_v5_actions_index(limit: $limit, offset: $offset, where: {block_date: {_eq: $block_date}, receiver: {receiver: {_in: $receiver_ids}}}) { - bitmap - first_block_height - } -} \ No newline at end of file diff --git a/block-streamer/graphql/darunrs_near/get_bitmaps.rs b/block-streamer/graphql/darunrs_near/get_bitmaps.rs deleted file mode 100644 index c16b502ae..000000000 --- a/block-streamer/graphql/darunrs_near/get_bitmaps.rs +++ /dev/null @@ -1,48 +0,0 @@ -#![allow(clippy::all, warnings)] -pub struct GetBitmapsExact; -pub mod get_bitmaps_exact { - #![allow(dead_code)] - use std::result::Result; - pub const OPERATION_NAME: &str = "GetBitmapsExact"; - pub const QUERY : & str = "query GetBitmapsExact($block_date: date, $receiver_ids: [String!], $limit: Int, $offset: Int) {\n darunrs_near_bitmap_v5_actions_index(limit: $limit, offset: $offset, where: {block_date: {_eq: $block_date}, receiver: {receiver: {_in: $receiver_ids}}}) {\n bitmap\n first_block_height\n }\n}" ; - use super::*; - use serde::{Deserialize, Serialize}; - #[allow(dead_code)] - type Boolean = bool; - #[allow(dead_code)] - type Float = f64; - #[allow(dead_code)] - type Int = i64; - #[allow(dead_code)] - type ID = String; - type date = super::date; - #[derive(Serialize)] - pub struct Variables { - pub block_date: Option, - pub receiver_ids: Option>, - pub limit: Option, - pub offset: Option, - } - impl Variables {} - #[derive(Deserialize, Debug)] - pub struct ResponseData { - pub darunrs_near_bitmap_v5_actions_index: - Vec, - } - #[derive(Deserialize, Debug)] - pub struct GetBitmapsExactDarunrsNearBitmapV5ActionsIndex { - pub bitmap: String, - pub first_block_height: Int, - } -} -impl graphql_client::GraphQLQuery for GetBitmapsExact { - type Variables = get_bitmaps_exact::Variables; - type ResponseData = get_bitmaps_exact::ResponseData; - fn build_query(variables: Self::Variables) -> ::graphql_client::QueryBody { - graphql_client::QueryBody { - variables, - query: get_bitmaps_exact::QUERY, - operation_name: get_bitmaps_exact::OPERATION_NAME, - } - } -} diff --git a/block-streamer/graphql/darunrs_near/schema.json b/block-streamer/graphql/darunrs_near/schema.json deleted file mode 100644 index d10e6709d..000000000 --- a/block-streamer/graphql/darunrs_near/schema.json +++ /dev/null @@ -1,33739 +0,0 @@ -{ - "data": { - "__schema": { - "directives": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": "whether this query should be included", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "include" - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": "whether this query should be skipped", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "skip" - }, - { - "args": [ - { - "defaultValue": "60", - "description": "measured in seconds", - "name": "ttl", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": "false", - "description": "refresh the cache entry", - "name": "refresh", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": "whether this query should be cached (Hasura Cloud only)", - "locations": [ - "QUERY" - ], - "name": "cached" - } - ], - "mutationType": { - "name": "mutation_root" - }, - "queryType": { - "name": "query_root" - }, - "subscriptionType": { - "name": "subscription_root" - }, - "types": [ - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Float", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column match the given case-insensitive pattern", - "name": "_ilike", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "does the column match the given POSIX regular expression, case insensitive", - "name": "_iregex", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column match the given pattern", - "name": "_like", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column NOT match the given case-insensitive pattern", - "name": "_nilike", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "does the column NOT match the given POSIX regular expression, case insensitive", - "name": "_niregex", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column NOT match the given pattern", - "name": "_nlike", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column NOT match the given POSIX regular expression, case sensitive", - "name": "_nregex", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column NOT match the given SQL regular expression", - "name": "_nsimilar", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column match the given POSIX regular expression, case sensitive", - "name": "_regex", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column match the given SQL regular expression", - "name": "_similar", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "args", - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isRepeatable", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "locations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Directive", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deprecationReason", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isDeprecated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__EnumValue", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "args", - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deprecationReason", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isDeprecated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Field", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "defaultValue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__InputValue", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "directives", - "type": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "mutationType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "queryType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subscriptionType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "types", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Schema", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "enumValues", - "type": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fields", - "type": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputFields", - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "interfaces", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "kind", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ofType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "possibleTypes", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Type", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ENUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INPUT_OBJECT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INTERFACE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LIST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NON_NULL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OBJECT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCALAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UNION" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__TypeKind", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "bigint", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "possibleTypes": null - }, - { - "description": "ordering argument of a cursor", - "enumValues": [ - { - "deprecationReason": null, - "description": "ascending ordering of the cursor", - "isDeprecated": false, - "name": "ASC" - }, - { - "deprecationReason": null, - "description": "descending ordering of the cursor", - "isDeprecated": false, - "name": "DESC" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "cursor_ordering", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_benchmark_indexer.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_benchmark_indexer.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_benchmark_indexer.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_benchmark_indexer.indexer_storage\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_benchmark_indexer.indexer_storage\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_benchmark_indexer.indexer_storage\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "function_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "key_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_benchmark_indexer_indexer_storage\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_benchmark_indexer.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_benchmark_indexer.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_benchmark_indexer.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_benchmark_indexer.sys_logs\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_benchmark_indexer.sys_logs\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_benchmark_indexer.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_benchmark_indexer_sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_sum_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_benchmark_indexer.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_benchmark_indexer.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_benchmark_indexer.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_benchmark_indexer.sys_metadata\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_benchmark_indexer.sys_metadata\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_benchmark_indexer.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_benchmark_indexer_sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v3.actions_index\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"receiver_id\", \"block_date\"", - "isDeprecated": false, - "name": "actions_index_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_constraint", - "possibleTypes": null - }, - { - "description": "input type for incrementing numeric columns in table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_inc_input", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v3.actions_index\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_bitmap_v3.actions_index", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "bitmap" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "first_block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "last_elias_gamma_start_bit" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "max_index" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receiver_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_set_input", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v3_actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_sum_fields", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_bitmap_v3.actions_index\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "bitmap" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "first_block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "last_elias_gamma_start_bit" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "max_index" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receiver_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_updates", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v3.sys_logs\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"id\", \"date\"", - "isDeprecated": false, - "name": "sys_logs_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_constraint", - "possibleTypes": null - }, - { - "description": "input type for incrementing numeric columns in table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_inc_input", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v3.sys_logs\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_bitmap_v3.sys_logs", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_set_input", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v3_sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_sum_fields", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_bitmap_v3.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_updates", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v3.sys_metadata\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"attribute\"", - "isDeprecated": false, - "name": "sys_metadata_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_constraint", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v3.sys_metadata\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_bitmap_v3.sys_metadata", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_set_input", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v3_sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_bitmap_v3.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_updates", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "An object relationship", - "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_bool_exp_count", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_bool_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "arguments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "predicate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_bool_exp_count", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_fields", - "possibleTypes": null - }, - { - "description": "order by aggregate values of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_avg_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_max_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_min_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_sum_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_variance_order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_order_by", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_avg_fields", - "possibleTypes": null - }, - { - "description": "order by avg() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_avg_order_by", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v5.actions_index\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_max_fields", - "possibleTypes": null - }, - { - "description": "order by max() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_max_order_by", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_min_fields", - "possibleTypes": null - }, - { - "description": "order by min() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_min_order_by", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v5.actions_index\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "bitmap" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "first_block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "last_elias_gamma_start_bit" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "max_index" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receiver_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_fields", - "possibleTypes": null - }, - { - "description": "order by stddev() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_pop() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_samp() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stddev_samp_order_by", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v5_actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "bitmap", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_sum_fields", - "possibleTypes": null - }, - { - "description": "order by sum() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_sum_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_pop_fields", - "possibleTypes": null - }, - { - "description": "order by var_pop() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_samp_fields", - "possibleTypes": null - }, - { - "description": "order by var_samp() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_var_samp_order_by", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "first_block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max_index", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_variance_fields", - "possibleTypes": null - }, - { - "description": "order by variance() on columns of table \"darunrs_near_bitmap_v5.actions_index\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "first_block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_elias_gamma_start_bit", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max_index", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_variance_order_by", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v5.receivers\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An array relationship", - "isDeprecated": false, - "name": "actions_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An aggregate relationship", - "isDeprecated": false, - "name": "actions_index_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v5.receivers\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v5.receivers\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v5.receivers\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "actions_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "actions_index_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v5.receivers\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "actions_index_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v5.receivers\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receiver" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v5_receivers\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_sum_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v5.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v5.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v5.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v5.sys_logs\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v5.sys_logs\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v5.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v5_sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_sum_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_bitmap_v5.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_bitmap_v5.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_bitmap_v5.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_bitmap_v5.sys_metadata\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_bitmap_v5.sys_metadata\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_bitmap_v5.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_bitmap_v5_sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "An object relationship", - "isDeprecated": false, - "name": "post", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_bool_exp_count", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_bool_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "arguments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "predicate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_bool_exp_count", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_fields", - "possibleTypes": null - }, - { - "description": "order by aggregate values of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_avg_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_max_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_min_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_sum_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_variance_order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_order_by", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_avg_fields", - "possibleTypes": null - }, - { - "description": "order by avg() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_avg_order_by", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_social_feed_test.comments\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_max_fields", - "possibleTypes": null - }, - { - "description": "order by max() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_max_order_by", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_min_fields", - "possibleTypes": null - }, - { - "description": "order by min() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_min_order_by", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_social_feed_test.comments\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "account_id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "content" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "post_id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receipt_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_fields", - "possibleTypes": null - }, - { - "description": "order by stddev() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_pop() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_samp() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stddev_samp_order_by", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_social_feed_test_comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_sum_fields", - "possibleTypes": null - }, - { - "description": "order by sum() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_sum_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_pop_fields", - "possibleTypes": null - }, - { - "description": "order by var_pop() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_samp_fields", - "possibleTypes": null - }, - { - "description": "order by var_samp() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_var_samp_order_by", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_variance_fields", - "possibleTypes": null - }, - { - "description": "order by variance() on columns of table \"darunrs_near_social_feed_test.comments\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_variance_order_by", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "An object relationship", - "isDeprecated": false, - "name": "post", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_bool_exp_count", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_bool_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "arguments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "predicate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_bool_exp_count", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_fields", - "possibleTypes": null - }, - { - "description": "order by aggregate values of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_avg_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_max_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_min_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_sum_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_pop_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_samp_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_variance_order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_order_by", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_avg_fields", - "possibleTypes": null - }, - { - "description": "order by avg() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_avg_order_by", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_social_feed_test.post_likes\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_max_fields", - "possibleTypes": null - }, - { - "description": "order by max() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_max_order_by", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_min_fields", - "possibleTypes": null - }, - { - "description": "order by min() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_min_order_by", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_social_feed_test.post_likes\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "account_id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "post_id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receipt_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_fields", - "possibleTypes": null - }, - { - "description": "order by stddev() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_pop() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "order by stddev_samp() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stddev_samp_order_by", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_social_feed_test_post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_sum_fields", - "possibleTypes": null - }, - { - "description": "order by sum() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_sum_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_pop_fields", - "possibleTypes": null - }, - { - "description": "order by var_pop() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_pop_order_by", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_samp_fields", - "possibleTypes": null - }, - { - "description": "order by var_samp() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_var_samp_order_by", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "post_id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_variance_fields", - "possibleTypes": null - }, - { - "description": "order by variance() on columns of table \"darunrs_near_social_feed_test.post_likes\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_variance_order_by", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_social_feed_test.posts\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "JSON select path", - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "accounts_liked", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An array relationship", - "isDeprecated": false, - "name": "comments", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An aggregate relationship", - "isDeprecated": false, - "name": "comments_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An array relationship", - "isDeprecated": false, - "name": "post_likes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "An aggregate relationship", - "isDeprecated": false, - "name": "post_likes_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_social_feed_test.posts\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_social_feed_test.posts\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_social_feed_test.posts\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "accounts_liked", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "comments", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "comments_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_comment_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_likes", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_likes_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_social_feed_test.posts\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "accounts_liked", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "comments_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_comment_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_likes_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate_order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_social_feed_test.posts\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "account_id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "accounts_liked" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "content" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "last_comment_timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "receipt_id" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_social_feed_test_posts\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "accounts_liked", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "receipt_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_sum_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_comment_timestamp", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_social_feed_test.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_social_feed_test.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_social_feed_test.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_social_feed_test.sys_logs\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_social_feed_test.sys_logs\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_social_feed_test.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_social_feed_test_sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_sum_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_social_feed_test.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_social_feed_test.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_social_feed_test.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_social_feed_test.sys_metadata\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_min_fields", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_social_feed_test.sys_metadata\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_order_by", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_social_feed_test.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_social_feed_test_sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_test_fork.indexer_storage\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"function_name\", \"key_name\"", - "isDeprecated": false, - "name": "indexer_storage_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_constraint", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_test_fork.indexer_storage\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_test_fork.indexer_storage", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "function_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "key_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_set_input", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_test_fork_indexer_storage\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_test_fork.indexer_storage\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "function_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "key_name" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_updates", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "avg", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_avg_fields", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_min_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stddev_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sum", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_sum_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_pop", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_var_pop_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "var_samp", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_var_samp_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "variance", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_variance_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_aggregate_fields", - "possibleTypes": null - }, - { - "description": "aggregate avg on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_avg_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_test_fork.sys_logs\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"id\", \"date\"", - "isDeprecated": false, - "name": "sys_logs_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_constraint", - "possibleTypes": null - }, - { - "description": "input type for incrementing numeric columns in table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_inc_input", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_test_fork.sys_logs\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_test_fork.sys_logs", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_set_input", - "possibleTypes": null - }, - { - "description": "aggregate stddev on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate stddev_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stddev_samp_fields", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_test_fork_sys_logs\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "level", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "aggregate sum on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_sum_fields", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_test_fork.sys_logs\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "block_height" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "date" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "level" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "message" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "type" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_updates", - "possibleTypes": null - }, - { - "description": "aggregate var_pop on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_var_pop_fields", - "possibleTypes": null - }, - { - "description": "aggregate var_samp on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_var_samp_fields", - "possibleTypes": null - }, - { - "description": "aggregate variance on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_variance_fields", - "possibleTypes": null - }, - { - "description": "columns and relationships of \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "possibleTypes": null - }, - { - "description": "aggregated selection of \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aggregate", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_aggregate_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "nodes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_aggregate", - "possibleTypes": null - }, - { - "description": "aggregate fields of \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "distinct", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "count", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "max", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_max_fields", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "min", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_min_fields", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_aggregate_fields", - "possibleTypes": null - }, - { - "description": "Boolean expression to filter rows from the table \"darunrs_near_test_fork.sys_metadata\". All fields are combined with a logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "possibleTypes": null - }, - { - "description": "unique or primary key constraints on table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "unique or primary key constraint on columns \"attribute\"", - "isDeprecated": false, - "name": "sys_metadata_pkey" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_constraint", - "possibleTypes": null - }, - { - "description": "input type for inserting data into table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_insert_input", - "possibleTypes": null - }, - { - "description": "aggregate max on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_max_fields", - "possibleTypes": null - }, - { - "description": "aggregate min on columns", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_min_fields", - "possibleTypes": null - }, - { - "description": "response of any mutation on the table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "number of rows affected by the mutation", - "isDeprecated": false, - "name": "affected_rows", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "data from the rows affected by the mutation", - "isDeprecated": false, - "name": "returning", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_mutation_response", - "possibleTypes": null - }, - { - "description": "on_conflict condition type for table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "constraint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_constraint", - "ofType": null - } - } - }, - { - "defaultValue": "[]", - "description": null, - "name": "update_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_update_column", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_on_conflict", - "possibleTypes": null - }, - { - "description": "Ordering options when selecting data from \"darunrs_near_test_fork.sys_metadata\".", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_order_by", - "possibleTypes": null - }, - { - "description": "primary key columns input for table: darunrs_near_test_fork.sys_metadata", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_pk_columns_input", - "possibleTypes": null - }, - { - "description": "select columns of table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "possibleTypes": null - }, - { - "description": "input type for updating data in table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_set_input", - "possibleTypes": null - }, - { - "description": "Streaming cursor of the table \"darunrs_near_test_fork_sys_metadata\"", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "Stream column input with initial value", - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_stream_cursor_value_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor ordering", - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_stream_cursor_input", - "possibleTypes": null - }, - { - "description": "Initial value of the column from where the streaming should start", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_stream_cursor_value_input", - "possibleTypes": null - }, - { - "description": "update columns of table \"darunrs_near_test_fork.sys_metadata\"", - "enumValues": [ - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "attribute" - }, - { - "deprecationReason": null, - "description": "column name", - "isDeprecated": false, - "name": "value" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_update_column", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_updates", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "date", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"date\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "jsonb", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "String", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_cast", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "is the column contained in the given json value", - "name": "_contained_in", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the column contain the given json value at the top level", - "name": "_contains", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "does the string exist as a top-level key in the column", - "name": "_has_key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "do all of these strings exist as top-level keys in the column", - "name": "_has_keys_all", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "do any of these strings exist as top-level keys in the column", - "name": "_has_keys_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "possibleTypes": null - }, - { - "description": "mutation root", - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_actions_index", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "delete_darunrs_near_bitmap_v3_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_indexer_storage", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "filter the rows which have to be deleted", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete data from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "delete single row from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "delete_darunrs_near_test_fork_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_actions_index", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_actions_index_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_sys_logs_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "insert_darunrs_near_bitmap_v3_sys_metadata_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_indexer_storage", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_indexer_storage_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_sys_logs_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the rows to be inserted", - "name": "objects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_insert_input", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert data into the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "the row to be inserted", - "name": "object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_insert_input", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "upsert condition", - "name": "on_conflict", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_on_conflict", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "insert a single row into the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "insert_darunrs_near_test_fork_sys_metadata_one", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_actions_index", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_actions_index_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_mutation_response", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_logs_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_mutation_response", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_bitmap_v3_sys_metadata_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_mutation_response", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_indexer_storage", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_indexer_storage_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_mutation_response", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_logs", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "increments the numeric columns with given value of the filtered values", - "name": "_inc", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_inc_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_logs_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_mutation_response", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "filter the rows which have to be updated", - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update data of the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_metadata", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_mutation_response", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "sets the columns of the filtered rows to the given values", - "name": "_set", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_set_input", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pk_columns", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_pk_columns_input", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "update single row of the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "updates to execute, in order", - "name": "updates", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_updates", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "update multiples rows of table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "update_darunrs_near_test_fork_sys_metadata_many", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_mutation_response", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "mutation_root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "numeric", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "possibleTypes": null - }, - { - "description": "column ordering options", - "enumValues": [ - { - "deprecationReason": null, - "description": "in ascending order, nulls last", - "isDeprecated": false, - "name": "asc" - }, - { - "deprecationReason": null, - "description": "in ascending order, nulls first", - "isDeprecated": false, - "name": "asc_nulls_first" - }, - { - "deprecationReason": null, - "description": "in ascending order, nulls last", - "isDeprecated": false, - "name": "asc_nulls_last" - }, - { - "deprecationReason": null, - "description": "in descending order, nulls first", - "isDeprecated": false, - "name": "desc" - }, - { - "deprecationReason": null, - "description": "in descending order, nulls first", - "isDeprecated": false, - "name": "desc_nulls_first" - }, - { - "deprecationReason": null, - "description": "in descending order, nulls last", - "isDeprecated": false, - "name": "desc_nulls_last" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "order_by", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.indexer_storage\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.actions_index\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.actions_index\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.receivers\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.receivers\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.receivers\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.comments\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.comments\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.comments\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.post_likes\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.post_likes\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.post_likes\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.posts\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.posts\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.posts\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.indexer_storage\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "query_root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.indexer_storage\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_benchmark_indexer.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_indexer_storage_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_benchmark_indexer.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_logs_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_benchmark_indexer_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_benchmark_indexer.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_benchmark_indexer.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_benchmark_indexer.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_benchmark_indexer_sys_metadata_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_benchmark_indexer_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.actions_index\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v3.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_actions_index_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v3.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_logs_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v3_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v3.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v3.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v3_sys_metadata_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v3_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_actions_index_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block_date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "receiver_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.actions_index\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v5.actions_index\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_actions_index_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_actions_index", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.receivers\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_receivers_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.receivers\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.receivers\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_receivers_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v5.receivers\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_receivers_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_receivers", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v5.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_logs_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_bitmap_v5_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_bitmap_v5.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_bitmap_v5.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_bitmap_v5.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_bitmap_v5_sys_metadata_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_bitmap_v5_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.comments\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_comments_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.comments\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.comments\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_comments_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_social_feed_test.comments\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_comments_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_comments", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.post_likes\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_post_likes_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.post_likes\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "account_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "post_id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.post_likes\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_post_likes_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_social_feed_test.post_likes\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_post_likes_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_post_likes", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.posts\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_posts_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.posts\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.posts\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_posts_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_social_feed_test.posts\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_posts_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_posts", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_social_feed_test.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_logs_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_social_feed_test_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_social_feed_test.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_social_feed_test.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_social_feed_test.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_social_feed_test_sys_metadata_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_social_feed_test_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_indexer_storage_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "function_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "key_name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.indexer_storage\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_indexer_storage_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_test_fork.indexer_storage\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_indexer_storage_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_indexer_storage", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_logs_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_logs\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_logs_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_test_fork.sys_logs\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_logs_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_logs", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "distinct select on columns", - "name": "distinct_on", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "darunrs_near_test_fork_sys_metadata_select_column", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "limit the number of rows returned", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "skip the first n rows. Use only with order_by", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "sort the rows by one or more columns", - "name": "order_by", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_order_by", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch aggregated fields from the table: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata_aggregate", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_aggregate", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "attribute", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table: \"darunrs_near_test_fork.sys_metadata\" using primary key columns", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata_by_pk", - "type": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "maximum number of rows returned in a single batch", - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "cursor to stream the results returned by the query", - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_stream_cursor_input", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "filter the rows returned", - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "darunrs_near_test_fork_sys_metadata_bool_exp", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "fetch data from the table in a streaming manner: \"darunrs_near_test_fork.sys_metadata\"", - "isDeprecated": false, - "name": "darunrs_near_test_fork_sys_metadata_stream", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "darunrs_near_test_fork_sys_metadata", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "subscription_root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "timestamp", - "possibleTypes": null - }, - { - "description": "Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'.", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "_nin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "possibleTypes": null - } - ] - } - } -} \ No newline at end of file