diff --git a/hasura/metadata/cron_triggers.yaml b/hasura/metadata/cron_triggers.yaml index 1815fba41..abde5d5b6 100644 --- a/hasura/metadata/cron_triggers.yaml +++ b/hasura/metadata/cron_triggers.yaml @@ -54,6 +54,20 @@ - name: Authorization value_from_env: INTERNAL_ENDPOINTS_SECRET comment: Update the app stats table with the latest increment of nullifier data +- name: Rollup World ID analytics + webhook: '{{NEXT_API_URL}}/_rollup-world-id-analytics' + schedule: '*/15 * * * *' + include_in_metadata: true + payload: {} + retry_conf: + num_retries: 1 + retry_interval_seconds: 10 + timeout_seconds: 60 + tolerance_seconds: 900 + headers: + - name: Authorization + value_from_env: INTERNAL_ENDPOINTS_SECRET + comment: Rebuild the trailing ~25h of v3 and v4 unique-nullifier daily analytics - name: Deactivate RPs for deleted apps webhook: '{{NEXT_API_URL}}/_deactivate-deleted-app-rps' schedule: '*/15 * * * *' diff --git a/hasura/metadata/databases/default/functions/functions.yaml b/hasura/metadata/databases/default/functions/functions.yaml index a74102b1a..f764b593f 100644 --- a/hasura/metadata/databases/default/functions/functions.yaml +++ b/hasura/metadata/databases/default/functions/functions.yaml @@ -2,3 +2,5 @@ - "!include public_action_stats.yaml" - "!include public_merge_world_id_accounts.yaml" - "!include public_rollup_app_stats.yaml" +- "!include public_rollup_world_id_analytics.yaml" +- "!include public_world_id_analytics_app_daily.yaml" diff --git a/hasura/metadata/databases/default/functions/public_rollup_world_id_analytics.yaml b/hasura/metadata/databases/default/functions/public_rollup_world_id_analytics.yaml new file mode 100644 index 000000000..8e89b297f --- /dev/null +++ b/hasura/metadata/databases/default/functions/public_rollup_world_id_analytics.yaml @@ -0,0 +1,7 @@ +function: + name: rollup_world_id_analytics + schema: public +configuration: + exposed_as: mutation +permissions: + - role: service diff --git a/hasura/metadata/databases/default/functions/public_world_id_analytics_app_daily.yaml b/hasura/metadata/databases/default/functions/public_world_id_analytics_app_daily.yaml new file mode 100644 index 000000000..e7a01024b --- /dev/null +++ b/hasura/metadata/databases/default/functions/public_world_id_analytics_app_daily.yaml @@ -0,0 +1,5 @@ +function: + name: world_id_analytics_app_daily + schema: public +permissions: + - role: service diff --git a/hasura/metadata/databases/default/tables/public_action_legacy_stats_daily.yaml b/hasura/metadata/databases/default/tables/public_action_legacy_stats_daily.yaml new file mode 100644 index 000000000..c77e8f34c --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_action_legacy_stats_daily.yaml @@ -0,0 +1,12 @@ +table: + name: action_legacy_stats_daily + schema: public +object_relationships: + - name: action + using: + foreign_key_constraint_on: action_id +select_permissions: + - role: service + permission: + columns: [action_id, date_utc, unique_count] + filter: {} diff --git a/hasura/metadata/databases/default/tables/public_action_v4_stats_daily.yaml b/hasura/metadata/databases/default/tables/public_action_v4_stats_daily.yaml new file mode 100644 index 000000000..39e9fff89 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_action_v4_stats_daily.yaml @@ -0,0 +1,12 @@ +table: + name: action_v4_stats_daily + schema: public +object_relationships: + - name: action_v4 + using: + foreign_key_constraint_on: action_v4_id +select_permissions: + - role: service + permission: + columns: [action_v4_id, date_utc, unique_count] + filter: {} diff --git a/hasura/metadata/databases/default/tables/public_world_id_app_stats_daily.yaml b/hasura/metadata/databases/default/tables/public_world_id_app_stats_daily.yaml new file mode 100644 index 000000000..c0a020167 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_world_id_app_stats_daily.yaml @@ -0,0 +1,8 @@ +table: + name: world_id_app_stats_daily + schema: public +select_permissions: + - role: service + permission: + columns: [date_utc, unique_count] + filter: {} diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index a18716c67..e6ee5ded0 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -1,6 +1,8 @@ - "!include public_action.yaml" +- "!include public_action_legacy_stats_daily.yaml" - "!include public_action_stats_returning.yaml" - "!include public_action_v4.yaml" +- "!include public_action_v4_stats_daily.yaml" - "!include public_api_key.yaml" - "!include public_app.yaml" - "!include public_app_daily_users.yaml" @@ -27,3 +29,4 @@ - "!include public_sandbox_access_request.yaml" - "!include public_team.yaml" - "!include public_user.yaml" +- "!include public_world_id_app_stats_daily.yaml" diff --git a/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/down.sql b/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/down.sql new file mode 100644 index 000000000..aaccbaa98 --- /dev/null +++ b/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/down.sql @@ -0,0 +1,5 @@ +DROP FUNCTION IF EXISTS public.rollup_world_id_analytics(date, date); +DROP FUNCTION IF EXISTS public.world_id_analytics_app_daily(varchar, varchar, date, date); +DROP TABLE IF EXISTS public.world_id_app_stats_daily; +DROP TABLE IF EXISTS public.action_v4_stats_daily; +DROP TABLE IF EXISTS public.action_legacy_stats_daily; diff --git a/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/up.sql b/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/up.sql new file mode 100644 index 000000000..b0540d195 --- /dev/null +++ b/hasura/migrations/default/1785459169000_add_world_id_single_metric_analytics/up.sql @@ -0,0 +1,180 @@ +CREATE TABLE public.action_legacy_stats_daily ( + action_id varchar(50) NOT NULL REFERENCES public.action(id) ON DELETE CASCADE, + date_utc date NOT NULL, + unique_count bigint NOT NULL CHECK (unique_count >= 0), + PRIMARY KEY (action_id, date_utc) +); + +CREATE TABLE public.action_v4_stats_daily ( + action_v4_id varchar(50) NOT NULL REFERENCES public.action_v4(id) ON DELETE CASCADE, + date_utc date NOT NULL, + unique_count bigint NOT NULL CHECK (unique_count >= 0), + PRIMARY KEY (action_v4_id, date_utc) +); + +CREATE INDEX action_legacy_stats_daily_date_idx + ON public.action_legacy_stats_daily (date_utc); +CREATE INDEX action_v4_stats_daily_date_idx + ON public.action_v4_stats_daily (date_utc); + +CREATE TABLE public.world_id_app_stats_daily ( + date_utc date PRIMARY KEY, + unique_count bigint NOT NULL +); + +CREATE OR REPLACE FUNCTION public.world_id_analytics_app_daily( + app_id_input varchar, + environment_input varchar, + from_date_input date, + through_date_input date +) +RETURNS SETOF public.world_id_app_stats_daily +LANGUAGE sql +STABLE +AS $$ + SELECT combined.date_utc, sum(combined.unique_count)::bigint + FROM ( + SELECT daily.date_utc, daily.unique_count + FROM public.action_legacy_stats_daily daily + JOIN public.action legacy_action ON legacy_action.id = daily.action_id + JOIN public.app application ON application.id = legacy_action.app_id + WHERE application.id = app_id_input + AND application.deleted_at IS NULL + AND ( + (environment_input = 'staging' AND application.is_staging) + OR (environment_input = 'production' AND NOT application.is_staging) + ) + AND daily.date_utc BETWEEN from_date_input AND through_date_input + + UNION ALL + + SELECT daily.date_utc, daily.unique_count + FROM public.action_v4_stats_daily daily + JOIN public.action_v4 action_v4 ON action_v4.id = daily.action_v4_id + JOIN public.rp_registration registration ON registration.rp_id = action_v4.rp_id + JOIN public.app application ON application.id = registration.app_id + WHERE application.id = app_id_input + AND application.deleted_at IS NULL + AND action_v4.environment::text = environment_input + AND daily.date_utc BETWEEN from_date_input AND through_date_input + ) combined + GROUP BY combined.date_utc + ORDER BY combined.date_utc +$$; + +-- Stateless window rebuild: delete the window's rolled days and recount them +-- from the raw nullifier tables. Passing no dates rebuilds the standard +-- trailing window (the last ~25 hours); explicit dates rebuild exactly that +-- inclusive range, which is also how any suspect range is repaired. +CREATE OR REPLACE FUNCTION public.rollup_world_id_analytics( + from_date date, + to_date date +) +RETURNS SETOF public.world_id_app_stats_daily +LANGUAGE plpgsql +VOLATILE +AS $$ +DECLARE + cutoff timestamptz := clock_timestamp() - interval '5 minutes'; + window_start date; + window_end date; + rebuild_until timestamptz; +BEGIN + IF (from_date IS NULL) <> (to_date IS NULL) THEN + RAISE EXCEPTION 'from_date and to_date must be supplied together'; + END IF; + + window_start := COALESCE( + from_date, + ((cutoff - interval '25 hours') AT TIME ZONE 'UTC')::date + ); + window_end := COALESCE(to_date, (cutoff AT TIME ZONE 'UTC')::date); + + IF window_start > window_end THEN + RAISE EXCEPTION 'from_date % is after to_date %', window_start, window_end; + END IF; + + -- Never count the racing 5 minutes: rows may still be committing there, and + -- a later run's window always re-covers them. + rebuild_until := LEAST( + (window_end + 1)::timestamp AT TIME ZONE 'UTC', + cutoff + ); + + IF window_start::timestamp AT TIME ZONE 'UTC' >= rebuild_until THEN + RETURN; + END IF; + + -- Serialize concurrent runs (cron ticks, backfill chunks, parity catch-up). + -- Blocking rather than try-lock: Hasura hides Postgres SQLSTATEs from + -- non-admin roles, so the route could not tell a lock miss from a failure. + -- Waiters are bounded by the caller's request timeout. + PERFORM pg_advisory_xact_lock(533214, 43); + + -- Take the recount's parent locks BEFORE touching child rows. Without + -- this, a concurrent action deletion (parent row first, then a cascade + -- into the very child rows this window just deleted) forms a lock cycle + -- whose victim is nearly always the user's delete (40P01, reproduced + -- 3/3). Parent-before-child on both sides removes the cycle: the delete + -- briefly waits for this transaction, then cascades cleanly. + PERFORM 1 + FROM public.action locked_action + WHERE locked_action.id IN ( + SELECT DISTINCT n.action_id + FROM public.nullifier n + WHERE n.created_at >= (window_start::timestamp AT TIME ZONE 'UTC') + AND n.created_at < rebuild_until + ) + ORDER BY locked_action.id + FOR KEY SHARE OF locked_action; + + PERFORM 1 + FROM public.action_v4 locked_action + WHERE locked_action.id IN ( + SELECT DISTINCT n.action_v4_id + FROM public.nullifier_v4 n + WHERE n.created_at >= (window_start::timestamp AT TIME ZONE 'UTC') + AND n.created_at < rebuild_until + ) + ORDER BY locked_action.id + FOR KEY SHARE OF locked_action; + + DELETE FROM public.action_legacy_stats_daily + WHERE date_utc BETWEEN window_start AND window_end; + DELETE FROM public.action_v4_stats_daily + WHERE date_utc BETWEEN window_start AND window_end; + + INSERT INTO public.action_legacy_stats_daily (action_id, date_utc, unique_count) + SELECT n.action_id, (n.created_at AT TIME ZONE 'UTC')::date, count(*)::bigint + FROM public.nullifier n + JOIN public.action a ON a.id = n.action_id + WHERE n.created_at >= (window_start::timestamp AT TIME ZONE 'UTC') + AND n.created_at < rebuild_until + GROUP BY n.action_id, (n.created_at AT TIME ZONE 'UTC')::date; + + INSERT INTO public.action_v4_stats_daily (action_v4_id, date_utc, unique_count) + SELECT n.action_v4_id, (n.created_at AT TIME ZONE 'UTC')::date, count(*)::bigint + FROM public.nullifier_v4 n + JOIN public.action_v4 a ON a.id = n.action_v4_id + WHERE n.created_at >= (window_start::timestamp AT TIME ZONE 'UTC') + AND n.created_at < rebuild_until + GROUP BY n.action_v4_id, (n.created_at AT TIME ZONE 'UTC')::date; + + RETURN QUERY + SELECT combined.date_utc, sum(combined.unique_count)::bigint + FROM ( + SELECT daily.date_utc, daily.unique_count + FROM public.action_legacy_stats_daily daily + WHERE daily.date_utc BETWEEN window_start AND window_end + UNION ALL + SELECT daily.date_utc, daily.unique_count + FROM public.action_v4_stats_daily daily + WHERE daily.date_utc BETWEEN window_start AND window_end + ) combined + GROUP BY combined.date_utc + ORDER BY combined.date_utc; +END +$$; + +COMMENT ON TABLE public.world_id_app_stats_daily IS + 'Empty tracked return shape for the service-only app analytics SQL functions.'; diff --git a/hasura/operations/world-id-analytics/create-nullifier-created-at-index.sql b/hasura/operations/world-id-analytics/create-nullifier-created-at-index.sql new file mode 100644 index 000000000..176007671 --- /dev/null +++ b/hasura/operations/world-id-analytics/create-nullifier-created-at-index.sql @@ -0,0 +1,43 @@ +\set ON_ERROR_STOP on + +-- Run out of band before enabling the rollup. Hasura migrations are +-- transactional, so these builds deliberately do not live in a migration. +CREATE INDEX CONCURRENTLY IF NOT EXISTS nullifier_created_at_idx + ON public.nullifier (created_at); + +DO $index_gate$ +BEGIN + IF NOT EXISTS ( + SELECT 1 + FROM pg_index + WHERE indexrelid = to_regclass('public.nullifier_created_at_idx') + AND indrelid = 'public.nullifier'::regclass + AND indisready + AND indisvalid + ) THEN + RAISE EXCEPTION USING + MESSAGE = 'nullifier_created_at_idx is missing or invalid', + HINT = 'Run DROP INDEX CONCURRENTLY IF EXISTS public.nullifier_created_at_idx; then rerun this script'; + END IF; +END +$index_gate$; + +CREATE INDEX CONCURRENTLY IF NOT EXISTS nullifier_v4_created_at_idx + ON public.nullifier_v4 (created_at); + +DO $index_gate$ +BEGIN + IF NOT EXISTS ( + SELECT 1 + FROM pg_index + WHERE indexrelid = to_regclass('public.nullifier_v4_created_at_idx') + AND indrelid = 'public.nullifier_v4'::regclass + AND indisready + AND indisvalid + ) THEN + RAISE EXCEPTION USING + MESSAGE = 'nullifier_v4_created_at_idx is missing or invalid', + HINT = 'Run DROP INDEX CONCURRENTLY IF EXISTS public.nullifier_v4_created_at_idx; then rerun this script'; + END IF; +END +$index_gate$; diff --git a/web/.env.example b/web/.env.example index a79242bea..2a17df4fe 100644 --- a/web/.env.example +++ b/web/.env.example @@ -10,6 +10,10 @@ ALCHEMY_API_KEY=your_alchemy_api_key # Internal INTERNAL_ENDPOINTS_SECRET=your_internal_secret GENERAL_SECRET_KEY=your_general_secret_key +# Fail-closed gate for the recurring World ID analytics rollup (cron mode +# only; dated backfill calls run regardless). Enable only after the dated +# backfill POSTs have covered all history with empty failed_ranges. +WORLD_ID_ANALYTICS_ROLLUP_ENABLED=false # PostHog NEXT_PUBLIC_POSTHOG_API_KEY=your_posthog_key diff --git a/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.generated.ts b/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.generated.ts new file mode 100644 index 000000000..0898c737c --- /dev/null +++ b/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.generated.ts @@ -0,0 +1,69 @@ +/* eslint-disable import/no-relative-parent-imports -- auto generated file */ +import * as Types from "@/graphql/graphql"; + +import { GraphQLClient, RequestOptions } from "graphql-request"; +import gql from "graphql-tag"; +type GraphQLClientRequestHeaders = RequestOptions["requestHeaders"]; +export type RollupWorldIdAnalyticsMutationVariables = Types.Exact<{ + from_date?: Types.InputMaybe; + to_date?: Types.InputMaybe; +}>; + +export type RollupWorldIdAnalyticsMutation = { + __typename?: "mutation_root"; + rollup_world_id_analytics: Array<{ + __typename?: "world_id_app_stats_daily"; + date_utc: string; + unique_count: number; + }>; +}; + +export const RollupWorldIdAnalyticsDocument = gql` + mutation RollupWorldIdAnalytics($from_date: date, $to_date: date) { + rollup_world_id_analytics( + args: { from_date: $from_date, to_date: $to_date } + ) { + date_utc + unique_count + } + } +`; + +export type SdkFunctionWrapper = ( + action: (requestHeaders?: Record) => Promise, + operationName: string, + operationType?: string, + variables?: any, +) => Promise; + +const defaultWrapper: SdkFunctionWrapper = ( + action, + _operationName, + _operationType, + _variables, +) => action(); + +export function getSdk( + client: GraphQLClient, + withWrapper: SdkFunctionWrapper = defaultWrapper, +) { + return { + RollupWorldIdAnalytics( + variables?: RollupWorldIdAnalyticsMutationVariables, + requestHeaders?: GraphQLClientRequestHeaders, + ): Promise { + return withWrapper( + (wrappedRequestHeaders) => + client.request( + RollupWorldIdAnalyticsDocument, + variables, + { ...requestHeaders, ...wrappedRequestHeaders }, + ), + "RollupWorldIdAnalytics", + "mutation", + variables, + ); + }, + }; +} +export type Sdk = ReturnType; diff --git a/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.graphql b/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.graphql new file mode 100644 index 000000000..1ad2760bd --- /dev/null +++ b/web/api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.graphql @@ -0,0 +1,8 @@ +mutation RollupWorldIdAnalytics($from_date: date, $to_date: date) { + rollup_world_id_analytics( + args: { from_date: $from_date, to_date: $to_date } + ) { + date_utc + unique_count + } +} diff --git a/web/api/_rollup-world-id-analytics/index.ts b/web/api/_rollup-world-id-analytics/index.ts new file mode 100644 index 000000000..7120649b2 --- /dev/null +++ b/web/api/_rollup-world-id-analytics/index.ts @@ -0,0 +1,192 @@ +import { getAPIServiceGraphqlClient } from "@/api/helpers/graphql"; +import { protectInternalEndpoint } from "@/api/helpers/utils"; +import { logger } from "@/lib/logger"; +import { NextRequest, NextResponse } from "next/server"; +import { getSdk } from "./graphql/rollup-world-id-analytics.generated"; + +// Dated (backfill/repair) calls: bounds chosen so one call always finishes +// comfortably inside the HTTP request that carries it. +const MAX_RANGE_DAYS = 92; +const DEFAULT_CHUNK_DAYS = 10; +const MAX_CHUNK_DAYS = 31; + +const DAY_MS = 24 * 60 * 60 * 1000; +const ISO_DATE = /^\d{4}-\d{2}-\d{2}$/; + +type DatedRequest = { + chunkDays: number; + fromDate: string; + toDate: string; +}; + +type Chunk = { from_date: string; to_date: string }; + +const parseUtcDate = (value: string) => { + const [year, month, day] = value.split("-").map(Number); + const parsed = new Date(Date.UTC(year, month - 1, day)); + return parsed.toISOString().slice(0, 10) === value ? parsed : null; +}; + +const formatUtcDate = (date: Date) => date.toISOString().slice(0, 10); + +const splitIntoChunks = (request: DatedRequest): Chunk[] => { + const from = parseUtcDate(request.fromDate)!; + const to = parseUtcDate(request.toDate)!; + const chunks: Chunk[] = []; + + for ( + let start = from.getTime(); + start <= to.getTime(); + start += request.chunkDays * DAY_MS + ) { + const end = Math.min( + start + (request.chunkDays - 1) * DAY_MS, + to.getTime(), + ); + chunks.push({ + from_date: formatUtcDate(new Date(start)), + to_date: formatUtcDate(new Date(end)), + }); + } + return chunks; +}; + +const badRequest = (message: string) => + NextResponse.json({ success: false, error: message }, { status: 400 }); + +const validateDatedRequest = ( + body: Record, +): { error: NextResponse } | { request: DatedRequest } => { + const { from_date, to_date, chunk_days } = body; + + if (typeof from_date !== "string" || typeof to_date !== "string") { + return { error: badRequest("from_date and to_date must both be set") }; + } + if (!ISO_DATE.test(from_date) || !parseUtcDate(from_date)) { + return { error: badRequest("from_date must be a valid YYYY-MM-DD date") }; + } + if (!ISO_DATE.test(to_date) || !parseUtcDate(to_date)) { + return { error: badRequest("to_date must be a valid YYYY-MM-DD date") }; + } + + const spanDays = + (parseUtcDate(to_date)!.getTime() - parseUtcDate(from_date)!.getTime()) / + DAY_MS + + 1; + if (spanDays < 1) { + return { error: badRequest("from_date must not be after to_date") }; + } + if (spanDays > MAX_RANGE_DAYS) { + return { + error: badRequest( + `range must be at most ${MAX_RANGE_DAYS} days per call; split it`, + ), + }; + } + + let chunkDays = DEFAULT_CHUNK_DAYS; + if (chunk_days !== undefined) { + if ( + typeof chunk_days !== "number" || + !Number.isInteger(chunk_days) || + chunk_days < 1 || + chunk_days > MAX_CHUNK_DAYS + ) { + return { + error: badRequest( + `chunk_days must be an integer between 1 and ${MAX_CHUNK_DAYS}`, + ), + }; + } + chunkDays = chunk_days; + } + + return { request: { chunkDays, fromDate: from_date, toDate: to_date } }; +}; + +// The service JWT behind the client lives one minute, so every chunk gets a +// fresh client rather than one client outliving its credential mid-loop. +const rollupWindow = async (variables: { + from_date: string | null; + to_date: string | null; +}) => { + const client = await getAPIServiceGraphqlClient(); + const result = await getSdk(client).RollupWorldIdAnalytics(variables); + const days = result.rollup_world_id_analytics; + const total = days.reduce( + (sum, day) => sum + BigInt(day.unique_count), + BigInt(0), + ); + return { days: days.length, total: total.toString() }; +}; + +const runDatedBackfill = async (request: DatedRequest) => { + const chunks = splitIntoChunks(request); + const failedRanges: Array = []; + + for (const chunk of chunks) { + try { + const rolled = await rollupWindow(chunk); + logger.info("Rolled up World ID analytics chunk", { + outcome: "chunk_advanced", + ...chunk, + ...rolled, + }); + } catch (error) { + failedRanges.push({ + ...chunk, + error: error instanceof Error ? error.message : String(error), + }); + logger.error("World ID analytics chunk failed", { ...chunk, error }); + } + } + + return NextResponse.json({ + success: failedRanges.length === 0, + chunks: chunks.length, + failed_ranges: failedRanges, + }); +}; + +export async function POST(request: NextRequest) { + const auth = protectInternalEndpoint(request); + if (!auth.isAuthenticated) return auth.errorResponse!; + + const body: unknown = await request.json().catch(() => ({})); + const fields = + body && typeof body === "object" && !Array.isArray(body) + ? (body as Record) + : {}; + + // Dated mode: operator-driven backfill/repair. Deliberately not behind the + // rollout flag so history can be built and re-verified before the recurring + // rollup is ever enabled; the internal secret still gates it. + if (fields.from_date !== undefined || fields.to_date !== undefined) { + const validated = validateDatedRequest(fields); + if ("error" in validated) return validated.error; + return runDatedBackfill(validated.request); + } + + // Cron mode: rebuild the standard trailing window. + if (process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED !== "true") { + return NextResponse.json({ success: true, outcome: "disabled" }); + } + + try { + const rolled = await rollupWindow({ from_date: null, to_date: null }); + logger.info("Rolled up World ID analytics", { + outcome: "advanced", + ...rolled, + }); + return NextResponse.json({ success: true, outcome: "advanced", ...rolled }); + } catch (error) { + logger.error("Error rolling up World ID analytics", { error }); + return NextResponse.json( + { + success: false, + error: error instanceof Error ? error.message : String(error), + }, + { status: 500 }, + ); + } +} diff --git a/web/app/api/%5Frollup-world-id-analytics/route.ts b/web/app/api/%5Frollup-world-id-analytics/route.ts new file mode 100644 index 000000000..b491ea72d --- /dev/null +++ b/web/app/api/%5Frollup-world-id-analytics/route.ts @@ -0,0 +1 @@ +export { POST } from "@/api/_rollup-world-id-analytics"; diff --git a/web/graphql/graphql.schema.json b/web/graphql/graphql.schema.json index c613f3e0c..3404aba77 100644 --- a/web/graphql/graphql.schema.json +++ b/web/graphql/graphql.schema.json @@ -5451,256 +5451,318 @@ }, { "kind": "OBJECT", - "name": "action_max_fields", - "description": "aggregate max on columns", + "name": "action_legacy_stats_daily", + "description": "columns and relationships of \"action_legacy_stats_daily\"", "fields": [ { "name": "action", - "description": "Raw action value as passed by the dev to IDKit.", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_flow_on_complete", + "name": "action_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "date_utc", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "client_secret", + "name": "unique_count", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_aggregate", + "description": "aggregated selection of \"action_legacy_stats_daily\"", + "fields": [ { - "name": "created_at", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "creation_mode", + "name": "nodes", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_aggregate_fields", + "description": "aggregate fields of \"action_legacy_stats_daily\"", + "fields": [ { - "name": "description", + "name": "avg", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "external_nullifier", - "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_avg_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "count", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "args": [], + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "Friendly name given to an action in the Developer Portal.", + "name": "max", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "post_action_deep_link_android", - "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "name": "min", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "post_action_deep_link_ios", - "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "name": "stddev", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy_policy_uri", + "name": "stddev_pop", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_pop_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", + "name": "stddev_samp", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_samp_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "sum", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_sum_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "terms_uri", + "name": "var_pop", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_var_pop_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "var_samp", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_var_samp_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_pem", - "description": "PEM used to encrypt the payload sent to the webhook_uri", + "name": "variance", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_variance_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { - "name": "webhook_uri", - "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "name": "unique_count", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -5714,40 +5776,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_max_order_by", - "description": "order by max() on columns of table \"action\"", + "name": "action_legacy_stats_daily_bool_exp", + "description": "Boolean expression to filter rows from the table \"action_legacy_stats_daily\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "action", - "description": "Raw action value as passed by the dev to IDKit.", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_flow_on_complete", + "name": "_and", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -5755,23 +5813,31 @@ "deprecationReason": null }, { - "name": "client_secret", + "name": "_or", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "action", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", "ofType": null }, "defaultValue": null, @@ -5779,11 +5845,11 @@ "deprecationReason": null }, { - "name": "creation_mode", + "name": "action_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -5791,23 +5857,11 @@ "deprecationReason": null }, { - "name": "description", + "name": "date_utc", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "external_nullifier", - "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", "ofType": null }, "defaultValue": null, @@ -5815,95 +5869,74 @@ "deprecationReason": null }, { - "name": "id", + "name": "unique_count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "Friendly name given to an action in the Developer Portal.", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "post_action_deep_link_android", - "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_legacy_stats_daily_constraint", + "description": "unique or primary key constraints on table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "post_action_deep_link_ios", - "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "action_legacy_stats_daily_pkey", + "description": "unique or primary key constraint on columns \"action_id\", \"date_utc\"", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_inc_input", + "description": "input type for incrementing numeric columns in table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "privacy_policy_uri", + "name": "unique_count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_insert_input", + "description": "input type for inserting data into table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "status", + "name": "action", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "action_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -5911,11 +5944,11 @@ "deprecationReason": null }, { - "name": "terms_uri", + "name": "action_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5923,23 +5956,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "date_utc", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook_pem", - "description": "PEM used to encrypt the payload sent to the webhook_uri", - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -5947,11 +5968,11 @@ "deprecationReason": null }, { - "name": "webhook_uri", - "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "name": "unique_count", + "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -5965,12 +5986,12 @@ }, { "kind": "OBJECT", - "name": "action_min_fields", - "description": "aggregate min on columns", + "name": "action_legacy_stats_daily_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "action", - "description": "Raw action value as passed by the dev to IDKit.", + "name": "action_id", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -5981,31 +6002,42 @@ "deprecationReason": null }, { - "name": "app_flow_on_complete", + "name": "date_utc", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "name": "date", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "unique_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "client_secret", + "name": "action_id", "description": null, "args": [], "type": { @@ -6017,204 +6049,385 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "date_utc", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "date", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "creation_mode", + "name": "unique_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_mutation_response", + "description": "response of any mutation on the table \"action_legacy_stats_daily\"", + "fields": [ { - "name": "description", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "external_nullifier", - "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_on_conflict", + "description": "on_conflict condition type for table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "update_columns", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_update_column", + "ofType": null + } + } + } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "args": [], + "name": "where", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_order_by", + "description": "Ordering options when selecting data from \"action_legacy_stats_daily\".", + "fields": null, + "inputFields": [ { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "args": [], + "name": "action", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "action_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "Friendly name given to an action in the Developer Portal.", - "args": [], + "name": "action_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "post_action_deep_link_android", - "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", - "args": [], + "name": "date_utc", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "post_action_deep_link_ios", - "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", - "args": [], + "name": "unique_count", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_pk_columns_input", + "description": "primary key columns input for table: action_legacy_stats_daily", + "fields": null, + "inputFields": [ + { + "name": "action_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy_policy_uri", + "name": "date_utc", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "description": "select columns of table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", - "args": [], + "name": "date_utc", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_count", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_set_input", + "description": "input type for updating data in table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": [ + { + "name": "action_id", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "date_utc", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "terms_uri", + "name": "unique_count", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "updated_at", + "name": "unique_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "webhook_pem", - "description": "PEM used to encrypt the payload sent to the webhook_uri", + "name": "unique_count", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "webhook_uri", - "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "name": "unique_count", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -6228,40 +6441,55 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_min_order_by", - "description": "order by min() on columns of table \"action\"", + "name": "action_legacy_stats_daily_stream_cursor_input", + "description": "Streaming cursor of the table \"action_legacy_stats_daily\"", "fields": null, "inputFields": [ { - "name": "action", - "description": "Raw action value as passed by the dev to IDKit.", + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_flow_on_complete", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { "kind": "ENUM", - "name": "order_by", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "app_id", + "name": "action_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6269,11 +6497,11 @@ "deprecationReason": null }, { - "name": "client_secret", + "name": "date_utc", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -6281,47 +6509,86 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "unique_count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "creation_mode", + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_legacy_stats_daily_update_column", + "description": "update columns of table \"action_legacy_stats_daily\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "date_utc", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "external_nullifier", - "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", + "name": "unique_count", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_inc_input", "ofType": null }, "defaultValue": null, @@ -6329,11 +6596,11 @@ "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_set_input", "ofType": null }, "defaultValue": null, @@ -6341,364 +6608,367 @@ "deprecationReason": null }, { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "unique_count", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "name", - "description": "Friendly name given to an action in the Developer Portal.", + "name": "unique_count", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "post_action_deep_link_android", - "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "name": "unique_count", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "post_action_deep_link_ios", - "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "name": "action", + "description": "Raw action value as passed by the dev to IDKit.", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy_policy_uri", + "name": "app_flow_on_complete", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "app_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "terms_uri", + "name": "client_secret", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_pem", - "description": "PEM used to encrypt the payload sent to the webhook_uri", + "name": "creation_mode", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_uri", - "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "name": "description", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_mutation_response", - "description": "response of any mutation on the table \"action\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "external_nullifier", + "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "id", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"action\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_insert_input", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "action_on_conflict", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_on_conflict", - "description": "on_conflict condition type for table \"action\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", - "description": null, + "name": "name", + "description": "Friendly name given to an action in the Developer Portal.", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, + "name": "post_action_deep_link_android", + "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "post_action_deep_link_ios", + "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "description": "Ordering options when selecting data from \"action\".", - "fields": null, - "inputFields": [ + }, { - "name": "action", + "name": "privacy_policy_uri", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app", - "description": null, + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_flow_on_complete", + "name": "status", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "terms_uri", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "client_secret", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "webhook_pem", + "description": "PEM used to encrypt the payload sent to the webhook_uri", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_uri", + "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_max_order_by", + "description": "order by max() on columns of table \"action\"", + "fields": null, + "inputFields": [ + { + "name": "action", + "description": "Raw action value as passed by the dev to IDKit.", "type": { "kind": "ENUM", "name": "order_by", @@ -6709,7 +6979,7 @@ "deprecationReason": null }, { - "name": "creation_mode", + "name": "app_flow_on_complete", "description": null, "type": { "kind": "ENUM", @@ -6721,7 +6991,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "app_id", "description": null, "type": { "kind": "ENUM", @@ -6733,7 +7003,7 @@ "deprecationReason": null }, { - "name": "external_nullifier", + "name": "client_secret", "description": null, "type": { "kind": "ENUM", @@ -6745,7 +7015,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -6757,7 +7027,7 @@ "deprecationReason": null }, { - "name": "kiosk_enabled", + "name": "creation_mode", "description": null, "type": { "kind": "ENUM", @@ -6769,7 +7039,7 @@ "deprecationReason": null }, { - "name": "max_accounts_per_user", + "name": "description", "description": null, "type": { "kind": "ENUM", @@ -6781,8 +7051,8 @@ "deprecationReason": null }, { - "name": "max_verifications", - "description": null, + "name": "external_nullifier", + "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", "type": { "kind": "ENUM", "name": "order_by", @@ -6793,7 +7063,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -6805,11 +7075,11 @@ "deprecationReason": null }, { - "name": "nullifiers_aggregate", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -6817,8 +7087,8 @@ "deprecationReason": null }, { - "name": "post_action_deep_link_android", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { "kind": "ENUM", "name": "order_by", @@ -6829,8 +7099,8 @@ "deprecationReason": null }, { - "name": "post_action_deep_link_ios", - "description": null, + "name": "name", + "description": "Friendly name given to an action in the Developer Portal.", "type": { "kind": "ENUM", "name": "order_by", @@ -6841,8 +7111,8 @@ "deprecationReason": null }, { - "name": "privacy_policy_uri", - "description": null, + "name": "post_action_deep_link_android", + "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", "type": { "kind": "ENUM", "name": "order_by", @@ -6853,8 +7123,8 @@ "deprecationReason": null }, { - "name": "redirect_count", - "description": null, + "name": "post_action_deep_link_ios", + "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", "type": { "kind": "ENUM", "name": "order_by", @@ -6865,11 +7135,11 @@ "deprecationReason": null }, { - "name": "redirects_aggregate", + "name": "privacy_policy_uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "redirect_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -6914,7 +7184,7 @@ }, { "name": "webhook_pem", - "description": null, + "description": "PEM used to encrypt the payload sent to the webhook_uri", "type": { "kind": "ENUM", "name": "order_by", @@ -6926,7 +7196,7 @@ }, { "name": "webhook_uri", - "description": null, + "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", "type": { "kind": "ENUM", "name": "order_by", @@ -6942,215 +7212,280 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_pk_columns_input", - "description": "primary key columns input for table: action", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "id", - "description": null, + "name": "action", + "description": "Raw action value as passed by the dev to IDKit.", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "action_select_column", - "description": "select columns of table \"action\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "action", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "app_flow_on_complete", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "app_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "client_secret", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "creation_mode", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "description", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "external_nullifier", - "description": "column name", + "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kiosk_enabled", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "max_accounts_per_user", - "description": "column name", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "max_verifications", - "description": "column name", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "name", - "description": "column name", + "description": "Friendly name given to an action in the Developer Portal.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "post_action_deep_link_android", - "description": "column name", + "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "post_action_deep_link_ios", - "description": "column name", + "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "privacy_policy_uri", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "terms_uri", - "description": "column name", + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_pem", - "description": "column name", + "name": "terms_uri", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_uri", - "description": "column name", + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"action_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"action\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "kiosk_enabled", - "description": "column name", + "name": "webhook_pem", + "description": "PEM used to encrypt the payload sent to the webhook_uri", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"action_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"action\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "kiosk_enabled", - "description": "column name", + "name": "webhook_uri", + "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_set_input", - "description": "input type for updating data in table \"action\"", + "name": "action_min_order_by", + "description": "order by min() on columns of table \"action\"", "fields": null, "inputFields": [ { "name": "action", "description": "Raw action value as passed by the dev to IDKit.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7161,8 +7496,8 @@ "name": "app_flow_on_complete", "description": null, "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7173,8 +7508,8 @@ "name": "app_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7185,8 +7520,8 @@ "name": "client_secret", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7197,8 +7532,8 @@ "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7209,8 +7544,8 @@ "name": "creation_mode", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7221,8 +7556,8 @@ "name": "description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7233,8 +7568,8 @@ "name": "external_nullifier", "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7245,20 +7580,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kiosk_enabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7269,8 +7592,8 @@ "name": "max_accounts_per_user", "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7281,8 +7604,8 @@ "name": "max_verifications", "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7293,8 +7616,8 @@ "name": "name", "description": "Friendly name given to an action in the Developer Portal.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7305,8 +7628,8 @@ "name": "post_action_deep_link_android", "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7317,8 +7640,8 @@ "name": "post_action_deep_link_ios", "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7329,8 +7652,8 @@ "name": "privacy_policy_uri", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7341,8 +7664,8 @@ "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7353,8 +7676,8 @@ "name": "terms_uri", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7365,8 +7688,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7377,8 +7700,8 @@ "name": "webhook_pem", "description": "PEM used to encrypt the payload sent to the webhook_uri", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7389,55 +7712,8 @@ "name": "webhook_uri", "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_args", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "actionId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startsAt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timespan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7451,35 +7727,19 @@ }, { "kind": "OBJECT", - "name": "action_stats_returning", - "description": "Returning value of action_stats function", + "name": "action_mutation_response", + "description": "response of any mutation on the table \"action\"", "fields": [ { - "name": "action", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_id", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -7487,80 +7747,99 @@ "deprecationReason": null }, { - "name": "date", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"action\"", + "fields": null, + "inputFields": [ { - "name": "unique_users", + "name": "data", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "action_insert_input", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", - "description": null, - "args": [], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_on_conflict", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "action_stats_returning_aggregate", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "action_on_conflict", + "description": "on_conflict condition type for table \"action\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "constraint", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "update_columns", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -7571,269 +7850,214 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "action_stats_returning", + "kind": "ENUM", + "name": "action_update_column", "ofType": null } } } }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "action_stats_returning_aggregate_fields", - "description": "aggregate fields of \"action_stats_returning\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "description": "Ordering options when selecting data from \"action\".", + "fields": null, + "inputFields": [ { - "name": "avg", + "name": "action", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_avg_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "app", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_stats_returning_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "app_flow_on_complete", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_max_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_min_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "client_secret", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_stddev_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_stddev_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "creation_mode", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_stddev_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "description", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_sum_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "external_nullifier", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_var_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_var_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "kiosk_enabled", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_variance_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_avg_fields", - "description": "aggregate avg on columns", - "fields": [ + }, { - "name": "unique_users", + "name": "max_accounts_per_user", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "max_verifications", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", - "description": "Boolean expression to filter rows from the table \"action_stats_returning\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "nullifiers_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "nullifier_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -7841,31 +8065,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "post_action_deep_link_android", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "action", + "name": "post_action_deep_link_ios", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7873,11 +8089,11 @@ "deprecationReason": null }, { - "name": "action_id", + "name": "privacy_policy_uri", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7885,11 +8101,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "redirect_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7897,11 +8113,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "redirects_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", + "name": "redirect_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -7909,11 +8125,59 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "terms_uri", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_pem", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_uri", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -7925,17 +8189,198 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "action_pk_columns_input", + "description": "primary key columns input for table: action", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "ENUM", - "name": "action_stats_returning_constraint", - "description": "unique or primary key constraints on table \"action_stats_returning\"", + "name": "action_select_column", + "description": "select columns of table \"action\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "action_stats_returning_pkey", - "description": "unique or primary key constraint on columns \"action_id\"", + "name": "action", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_flow_on_complete", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "client_secret", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creation_mode", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "external_nullifier", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kiosk_enabled", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_accounts_per_user", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_verifications", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post_action_deep_link_android", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post_action_deep_link_ios", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "privacy_policy_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "terms_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_pem", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"action_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"action\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "kiosk_enabled", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"action_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"action\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "kiosk_enabled", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -7944,16 +8389,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_inc_input", - "description": "input type for incrementing numeric columns in table \"action_stats_returning\"", + "name": "action_set_input", + "description": "input type for updating data in table \"action\"", "fields": null, "inputFields": [ { - "name": "unique_users", - "description": null, + "name": "action", + "description": "Raw action value as passed by the dev to IDKit.", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7961,34 +8406,23 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "app_flow_on_complete", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "app_flow_on_complete_enum", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_insert_input", - "description": "input type for inserting data into table \"action_stats_returning\"", - "fields": null, - "inputFields": [ + }, { - "name": "action", + "name": "app_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_obj_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7996,7 +8430,7 @@ "deprecationReason": null }, { - "name": "action_id", + "name": "client_secret", "description": null, "type": { "kind": "SCALAR", @@ -8008,7 +8442,7 @@ "deprecationReason": null }, { - "name": "date", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", @@ -8020,11 +8454,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "creation_mode", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "defaultValue": null, @@ -8032,243 +8466,226 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "action_id", - "description": null, - "args": [], + "name": "external_nullifier", + "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "kiosk_enabled", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "numeric", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", - "description": null, - "args": [], + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "action_id", - "description": null, - "args": [], + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Friendly name given to an action in the Developer Portal.", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", - "description": null, - "args": [], + "name": "post_action_deep_link_android", + "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", - "description": null, - "args": [], + "name": "post_action_deep_link_ios", + "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "privacy_policy_uri", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_mutation_response", - "description": "response of any mutation on the table \"action_stats_returning\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "status", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "terms_uri", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action_stats_returning", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_pem", + "description": "PEM used to encrypt the payload sent to the webhook_uri", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_uri", + "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_on_conflict", - "description": "on_conflict condition type for table \"action_stats_returning\"", + "name": "action_stats_args", + "description": null, "fields": null, "inputFields": [ { - "name": "constraint", + "name": "actionId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_stats_returning_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "startsAt", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_stats_returning_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "timespan", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -8281,256 +8698,312 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_order_by", - "description": "Ordering options when selecting data from \"action_stats_returning\".", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_stats_returning", + "description": "Returning value of action_stats function", + "fields": [ { "name": "action", - "description": null, + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "action_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "date", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "unique_users", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verifications", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_pk_columns_input", - "description": "primary key columns input for table: action_stats_returning", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_stats_returning_aggregate", + "description": null, + "fields": [ { - "name": "action_id", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_stats_returning_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_stats_returning", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "action_stats_returning_select_column", - "description": "select columns of table \"action_stats_returning\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "action_stats_returning_aggregate_fields", + "description": "aggregate fields of \"action_stats_returning\"", + "fields": [ { - "name": "action_id", - "description": "column name", + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_stats_returning_avg_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", - "description": "column name", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_stats_returning_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_set_input", - "description": "input type for updating data in table \"action_stats_returning\"", - "fields": null, - "inputFields": [ - { - "name": "action_id", + "name": "min", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_stats_returning_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_stats_returning_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "action_stats_returning_stddev_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "action_stats_returning_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ + }, { - "name": "unique_users", + "name": "sum", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "action_stats_returning_sum_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "var_pop", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "action_stats_returning_var_pop_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { - "name": "unique_users", + "name": "var_samp", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "action_stats_returning_var_samp_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "variance", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "action_stats_returning_variance_fields", "ofType": null }, "isDeprecated": false, @@ -8544,8 +9017,8 @@ }, { "kind": "OBJECT", - "name": "action_stats_returning_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", + "name": "action_stats_returning_avg_fields", + "description": "aggregate avg on columns", "fields": [ { "name": "unique_users", @@ -8579,20 +9052,24 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_stream_cursor_input", - "description": "Streaming cursor of the table \"action_stats_returning\"", + "name": "action_stats_returning_bool_exp", + "description": "Boolean expression to filter rows from the table \"action_stats_returning\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "_and", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_stream_cursor_value_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + } } }, "defaultValue": null, @@ -8600,34 +9077,55 @@ "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "_not", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "action_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -8638,8 +9136,8 @@ "name": "date", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -8650,8 +9148,8 @@ "name": "unique_users", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", "ofType": null }, "defaultValue": null, @@ -8662,8 +9160,8 @@ "name": "verifications", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", "ofType": null }, "defaultValue": null, @@ -8676,87 +9174,93 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "action_stats_returning_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + "kind": "ENUM", + "name": "action_stats_returning_constraint", + "description": "unique or primary key constraints on table \"action_stats_returning\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_stats_returning_pkey", + "description": "unique or primary key constraint on columns \"action_id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_inc_input", + "description": "input type for incrementing numeric columns in table \"action_stats_returning\"", + "fields": null, + "inputFields": [ { "name": "unique_users", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "numeric", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verifications", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "numeric", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "action_stats_returning_update_column", - "description": "update columns of table \"action_stats_returning\"", + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_insert_input", + "description": "input type for inserting data into table \"action_stats_returning\"", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "action_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": "column name", + "name": "action", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", - "description": "column name", + "name": "action_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "date", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_inc_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -8764,11 +9268,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "unique_users", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_set_input", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -8776,16 +9280,12 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "verifications", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -8798,51 +9298,40 @@ }, { "kind": "OBJECT", - "name": "action_stats_returning_var_pop_fields", - "description": "aggregate var_pop on columns", + "name": "action_stats_returning_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "unique_users", + "name": "action_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "date", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_stats_returning_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { "name": "unique_users", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "numeric", "ofType": null }, "isDeprecated": false, @@ -8854,7 +9343,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "numeric", "ofType": null }, "isDeprecated": false, @@ -8868,16 +9357,40 @@ }, { "kind": "OBJECT", - "name": "action_stats_returning_variance_fields", - "description": "aggregate variance on columns", + "name": "action_stats_returning_min_fields", + "description": "aggregate min on columns", "fields": [ + { + "name": "action_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "unique_users", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "numeric", "ofType": null }, "isDeprecated": false, @@ -8889,7 +9402,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "numeric", "ofType": null }, "isDeprecated": false, @@ -8903,60 +9416,139 @@ }, { "kind": "OBJECT", - "name": "action_stddev_fields", - "description": "aggregate stddev on columns", + "name": "action_stats_returning_mutation_response", + "description": "response of any mutation on the table \"action_stats_returning\"", "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_stats_returning", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_on_conflict", + "description": "on_conflict condition type for table \"action_stats_returning\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", - "args": [], + "name": "update_columns", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_stddev_order_by", - "description": "order by stddev() on columns of table \"action\"", + "name": "action_stats_returning_order_by", + "description": "Ordering options when selecting data from \"action_stats_returning\".", "fields": null, "inputFields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "action", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_id", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -8967,8 +9559,32 @@ "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "date", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_users", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifications", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -8984,64 +9600,79 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "action_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_pk_columns_input", + "description": "primary key columns input for table: action_stats_returning", + "fields": null, + "inputFields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "args": [], + "name": "action_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "description": "select columns of table \"action_stats_returning\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "date", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "unique_users", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifications", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"action\"", + "name": "action_stats_returning_set_input", + "description": "input type for updating data in table \"action_stats_returning\"", "fields": null, "inputFields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "action_id", + "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9049,11 +9680,35 @@ "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "date", + "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_users", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifications", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -9067,12 +9722,12 @@ }, { "kind": "OBJECT", - "name": "action_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", + "name": "action_stats_returning_stddev_fields", + "description": "aggregate stddev on columns", "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "unique_users", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -9083,8 +9738,31 @@ "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "verifications", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stats_returning_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "unique_users", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -9095,12 +9773,12 @@ "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", + "name": "verifications", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -9113,44 +9791,44 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"action\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_stats_returning_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "unique_users", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "verifications", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_stream_cursor_input", - "description": "Streaming cursor of the table \"action\"", + "name": "action_stats_returning_stream_cursor_input", + "description": "Streaming cursor of the table \"action_stats_returning\"", "fields": null, "inputFields": [ { @@ -9161,7 +9839,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stream_cursor_value_input", + "name": "action_stats_returning_stream_cursor_value_input", "ofType": null } }, @@ -9188,13 +9866,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_stream_cursor_value_input", + "name": "action_stats_returning_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "action", - "description": "Raw action value as passed by the dev to IDKit.", + "name": "action_id", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -9205,11 +9883,11 @@ "deprecationReason": null }, { - "name": "app_flow_on_complete", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -9217,11 +9895,11 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "unique_users", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "defaultValue": null, @@ -9229,47 +9907,104 @@ "deprecationReason": null }, { - "name": "client_secret", + "name": "verifications", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stats_returning_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "created_at", + "name": "unique_users", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "creation_mode", + "name": "verifications", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_stats_returning_update_column", + "description": "update columns of table \"action_stats_returning\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "date", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_users", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifications", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_inc_input", "ofType": null }, "defaultValue": null, @@ -9277,11 +10012,11 @@ "deprecationReason": null }, { - "name": "external_nullifier", - "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_set_input", "ofType": null }, "defaultValue": null, @@ -9289,107 +10024,190 @@ "deprecationReason": null }, { - "name": "id", + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stats_returning_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "unique_users", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "kiosk_enabled", + "name": "verifications", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stats_returning_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "unique_users", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "verifications", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stats_returning_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "name", - "description": "Friendly name given to an action in the Developer Portal.", + "name": "unique_users", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "post_action_deep_link_android", - "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "name": "verifications", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "post_action_deep_link_ios", - "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "privacy_policy_uri", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", - "description": null, + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stddev_order_by", + "description": "order by stddev() on columns of table \"action\"", + "fields": null, + "inputFields": [ + { + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -9397,35 +10215,81 @@ "deprecationReason": null }, { - "name": "terms_uri", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhook_pem", - "description": "PEM used to encrypt the payload sent to the webhook_uri", + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"action\"", + "fields": null, + "inputFields": [ + { + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -9433,11 +10297,11 @@ "deprecationReason": null }, { - "name": "webhook_uri", - "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -9451,8 +10315,8 @@ }, { "kind": "OBJECT", - "name": "action_sum_fields", - "description": "aggregate sum on columns", + "name": "action_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", "fields": [ { "name": "max_accounts_per_user", @@ -9460,7 +10324,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -9472,7 +10336,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -9498,8 +10362,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "action_sum_order_by", - "description": "order by sum() on columns of table \"action\"", + "name": "action_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"action\"", "fields": null, "inputFields": [ { @@ -9532,130 +10396,514 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "action_update_column", - "description": "update columns of table \"action\"", + "kind": "INPUT_OBJECT", + "name": "action_stream_cursor_input", + "description": "Streaming cursor of the table \"action\"", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, - "enumValues": [ + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { "name": "action", - "description": "column name", + "description": "Raw action value as passed by the dev to IDKit.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "app_flow_on_complete", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "app_id", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "client_secret", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "creation_mode", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "description", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "external_nullifier", - "description": "column name", + "description": "Encoded and hashed value of app_id and action. Determines scope for uniqueness. Used for Semaphore ZKPs.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "kiosk_enabled", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "max_accounts_per_user", - "description": "column name", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "max_verifications", - "description": "column name", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "name", - "description": "column name", + "description": "Friendly name given to an action in the Developer Portal.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "post_action_deep_link_android", - "description": "column name", + "description": "If specified, after action completion, allow users to continue to the Android app specified by the deep link", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "post_action_deep_link_ios", - "description": "column name", + "description": "If specified, after action completion, allow users to continue to the iOS app specified by the deep link", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "privacy_policy_uri", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "status", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "terms_uri", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook_pem", - "description": "column name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_pem", + "description": "PEM used to encrypt the payload sent to the webhook_uri", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_uri", + "description": "URI to send a payload to the webhook, encrypted by the webhook_pem", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_sum_order_by", + "description": "order by sum() on columns of table \"action\"", + "fields": null, + "inputFields": [ + { + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "action_update_column", + "description": "update columns of table \"action\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_flow_on_complete", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "client_secret", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creation_mode", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "external_nullifier", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kiosk_enabled", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_accounts_per_user", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_verifications", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post_action_deep_link_android", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post_action_deep_link_ios", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "privacy_policy_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "terms_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook_pem", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, @@ -11524,204 +12772,362 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_v4_stream_cursor_input", - "description": "Streaming cursor of the table \"action_v4\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "description": "columns and relationships of \"action_v4_stats_daily\"", + "fields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "action_v4", + "description": "An object relationship", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_stream_cursor_value_input", + "kind": "OBJECT", + "name": "action_v4", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "action_v4_id", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_v4_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_v4_stats_daily_aggregate", + "description": "aggregated selection of \"action_v4_stats_daily\"", + "fields": [ { - "name": "action", - "description": "Action identifier as passed by the developer", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_v4_stats_daily_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_aggregate_fields", + "description": "aggregate fields of \"action_v4_stats_daily\"", + "fields": [ { - "name": "description", - "description": "Human-readable description of the action", + "name": "avg", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_v4_stats_daily_avg_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": "Whether this action is for staging (allows nullifier reuse) or production", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "action_environment", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "max", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_v4_stats_daily_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_id", - "description": "Reference to the RP registration (on-chain RP ID)", + "name": "min", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_v4_stats_daily_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "action_v4_update_column", - "description": "update columns of table \"action_v4\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "action", - "description": "column name", + "name": "stddev_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_pop_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": "column name", + "name": "stddev_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_samp_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": "column name", + "name": "sum", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_sum_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": "column name", + "name": "var_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_var_pop_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "var_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_var_samp_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_id", - "description": "column name", + "name": "variance", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_variance_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "action_v4_updates", - "description": null, + "name": "action_v4_stats_daily_bool_exp", + "description": "Boolean expression to filter rows from the table \"action_v4_stats_daily\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_set_input", + "name": "action_v4_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -11729,97 +13135,107 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "_or", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "action_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "args": [], + "name": "action_v4", + "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "args": [], + "name": "action_v4_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", - "args": [], + "name": "unique_count", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_var_pop_order_by", - "description": "order by var_pop() on columns of table \"action\"", + "kind": "ENUM", + "name": "action_v4_stats_daily_constraint", + "description": "unique or primary key constraints on table \"action_v4_stats_daily\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "action_v4_stats_daily_pkey", + "description": "unique or primary key constraint on columns \"action_v4_id\", \"date_utc\"", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_inc_input", + "description": "input type for incrementing numeric columns in table \"action_v4_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "unique_count", + "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -11832,64 +13248,41 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "action_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_insert_input", + "description": "input type for inserting data into table \"action_v4_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "args": [], + "name": "action_v4", + "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "action_v4_obj_rel_insert_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", - "args": [], + "name": "action_v4_id", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", - "args": [], + "name": "date_utc", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "action_var_samp_order_by", - "description": "order by var_samp() on columns of table \"action\"", - "fields": null, - "inputFields": [ - { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", - "type": { - "kind": "ENUM", - "name": "order_by", + "name": "date", "ofType": null }, "defaultValue": null, @@ -11897,11 +13290,11 @@ "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "unique_count", + "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -11915,40 +13308,40 @@ }, { "kind": "OBJECT", - "name": "action_variance_fields", - "description": "aggregate variance on columns", + "name": "action_v4_stats_daily_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "action_v4_id", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "date_utc", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "date", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_count", - "description": "a computed field listing how many redirect_uris are added", + "name": "unique_count", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "isDeprecated": false, @@ -11961,55 +13354,67 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "action_variance_order_by", - "description": "order by variance() on columns of table \"action\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_v4_stats_daily_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "max_accounts_per_user", - "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "name": "action_v4_id", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_verifications", - "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "name": "date_utc", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "bigint", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "admin_dashboard_inventory", - "description": null, + "name": "action_v4_stats_daily_mutation_response", + "description": "response of any mutation on the table \"action_v4_stats_daily\"", "fields": [ { - "name": "active_api_keys", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null } }, @@ -12017,219 +13422,241 @@ "deprecationReason": null }, { - "name": "active_apps", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_on_conflict", + "description": "on_conflict condition type for table \"action_v4_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "active_teams", + "name": "constraint", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "action_v4_stats_daily_constraint", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_apps", + "name": "update_columns", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_stats_daily_update_column", + "ofType": null + } + } } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_teams", + "name": "where", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_order_by", + "description": "Ordering options when selecting data from \"action_v4_stats_daily\".", + "fields": null, + "inputFields": [ { - "name": "new_apps", + "name": "action_v4", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_v4_order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "new_teams", + "name": "action_v4_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "new_users", + "name": "date_utc", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pending_invites", + "name": "unique_count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_pk_columns_input", + "description": "primary key columns input for table: action_v4_stats_daily", + "fields": null, + "inputFields": [ + { + "name": "action_v4_id", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total_users", + "name": "date_utc", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "date", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_bool_exp_bool_exp", - "description": "Boolean expression to filter rows from the logical model for \"admin_dashboard_inventory\". All fields are combined with a logical 'AND'.", + "kind": "ENUM", + "name": "action_v4_stats_daily_select_column", + "description": "select columns of table \"action_v4_stats_daily\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_bool_exp_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "action_v4_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_bool_exp_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "date_utc", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_bool_exp_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "unique_count", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_set_input", + "description": "input type for updating data in table \"action_v4_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "active_api_keys", + "name": "action_v4_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12237,11 +13664,11 @@ "deprecationReason": null }, { - "name": "active_apps", + "name": "date_utc", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -12249,71 +13676,142 @@ "deprecationReason": null }, { - "name": "active_teams", + "name": "unique_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "deleted_apps", + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ + { + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "deleted_teams", + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "new_apps", + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_stream_cursor_input", + "description": "Streaming cursor of the table \"action_v4_stats_daily\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_stream_cursor_value_input", + "ofType": null + } + }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "new_teams", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "new_users", + "name": "action_v4_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12321,11 +13819,11 @@ "deprecationReason": null }, { - "name": "pending_invites", + "name": "date_utc", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -12333,11 +13831,11 @@ "deprecationReason": null }, { - "name": "total_users", + "name": "unique_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -12349,125 +13847,229 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "ENUM", - "name": "admin_dashboard_inventory_enum_name", - "description": null, + "name": "action_v4_stats_daily_update_column", + "description": "update columns of table \"action_v4_stats_daily\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "active_api_keys", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active_apps", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active_teams", + "name": "action_v4_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_apps", + "name": "date_utc", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_teams", + "name": "unique_count", "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "new_apps", - "description": "column name", + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "new_teams", - "description": "column name", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "new_users", - "description": "column name", + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "pending_invites", - "description": "column name", + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_v4_stats_daily_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "total_users", - "description": "column name", + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_order_by", - "description": "Ordering options when selecting data from \"admin_dashboard_inventory\".", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "action_v4_stats_daily_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "active_api_keys", + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stream_cursor_input", + "description": "Streaming cursor of the table \"action_v4\"", + "fields": null, + "inputFields": [ { - "name": "active_apps", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "active_teams", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { "kind": "ENUM", - "name": "order_by", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "deleted_apps", - "description": null, + "name": "action", + "description": "Action identifier as passed by the developer", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12475,11 +14077,11 @@ "deprecationReason": null }, { - "name": "deleted_teams", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -12487,11 +14089,11 @@ "deprecationReason": null }, { - "name": "new_apps", - "description": null, + "name": "description", + "description": "Human-readable description of the action", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12499,11 +14101,11 @@ "deprecationReason": null }, { - "name": "new_teams", - "description": null, + "name": "environment", + "description": "Whether this action is for staging (allows nullifier reuse) or production", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "action_environment", "ofType": null }, "defaultValue": null, @@ -12511,11 +14113,11 @@ "deprecationReason": null }, { - "name": "new_users", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12523,11 +14125,11 @@ "deprecationReason": null }, { - "name": "pending_invites", - "description": null, + "name": "rp_id", + "description": "Reference to the RP registration (on-chain RP ID)", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12535,11 +14137,11 @@ "deprecationReason": null }, { - "name": "total_users", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -12552,137 +14154,133 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "admin_dashboard_queue", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "action_v4_update_column", + "description": "update columns of table \"action_v4\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "action", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "description", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "environment", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_id", - "description": null, - "args": [], + "name": "rp_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_v4_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_v4_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_name", - "description": null, - "args": [], + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "team_id", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "total_count", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -12696,128 +14294,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_bool_exp_bool_exp", - "description": "Boolean expression to filter rows from the logical model for \"admin_dashboard_queue\". All fields are combined with a logical 'AND'.", + "name": "action_var_pop_order_by", + "description": "order by var_pop() on columns of table \"action\"", "fields": null, "inputFields": [ { - "name": "_and", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_bool_exp_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_bool_exp_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_bool_exp_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kind", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_email", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -12825,174 +14311,78 @@ "deprecationReason": null }, { - "name": "owner_name", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "team_id", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total_count", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "admin_dashboard_queue_enum_name", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kind", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total_count", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_order_by", - "description": "Ordering options when selecting data from \"admin_dashboard_queue\".", + "name": "action_var_samp_order_by", + "description": "order by var_samp() on columns of table \"action\"", "fields": null, "inputFields": [ { - "name": "email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kind", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { "kind": "ENUM", "name": "order_by", @@ -13003,8 +14393,8 @@ "deprecationReason": null }, { - "name": "owner_email", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { "kind": "ENUM", "name": "order_by", @@ -13013,46 +14403,68 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "action_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "owner_id", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_name", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "redirect_count", + "description": "a computed field listing how many redirect_uris are added", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "action_variance_order_by", + "description": "order by variance() on columns of table \"action\"", + "fields": null, + "inputFields": [ { - "name": "total_count", - "description": null, + "name": "max_accounts_per_user", + "description": "Only for Sign in with World ID. Determines the maximum number of accounts a single person can have for the respective app.", "type": { "kind": "ENUM", "name": "order_by", @@ -13063,8 +14475,8 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "max_verifications", + "description": "Only used for actions. Only for actions verified in the Developer Portal. Determines the maximum number of verifications that a user can perform for this action.", "type": { "kind": "ENUM", "name": "order_by", @@ -13081,123 +14493,11 @@ }, { "kind": "OBJECT", - "name": "admin_rp_inventory", + "name": "admin_dashboard_inventory", "description": null, "fields": [ { - "name": "distinct_manager_keys", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_rps", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_with_key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_without_key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rps_on_shared_keys", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "self_managed_rps", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shared_key_groups", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "staging_status_deactivated", + "name": "active_api_keys", "description": null, "args": [], "type": { @@ -13213,7 +14513,7 @@ "deprecationReason": null }, { - "name": "staging_status_failed", + "name": "active_apps", "description": null, "args": [], "type": { @@ -13229,7 +14529,7 @@ "deprecationReason": null }, { - "name": "staging_status_null", + "name": "active_teams", "description": null, "args": [], "type": { @@ -13245,7 +14545,7 @@ "deprecationReason": null }, { - "name": "staging_status_pending", + "name": "deleted_apps", "description": null, "args": [], "type": { @@ -13261,7 +14561,7 @@ "deprecationReason": null }, { - "name": "staging_status_registered", + "name": "deleted_teams", "description": null, "args": [], "type": { @@ -13277,7 +14577,7 @@ "deprecationReason": null }, { - "name": "status_deactivated", + "name": "new_apps", "description": null, "args": [], "type": { @@ -13293,7 +14593,7 @@ "deprecationReason": null }, { - "name": "status_failed", + "name": "new_teams", "description": null, "args": [], "type": { @@ -13309,7 +14609,7 @@ "deprecationReason": null }, { - "name": "status_pending", + "name": "new_users", "description": null, "args": [], "type": { @@ -13325,7 +14625,7 @@ "deprecationReason": null }, { - "name": "status_registered", + "name": "pending_invites", "description": null, "args": [], "type": { @@ -13341,7 +14641,7 @@ "deprecationReason": null }, { - "name": "total_rps", + "name": "total_users", "description": null, "args": [], "type": { @@ -13364,8 +14664,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_bool_exp_bool_exp", - "description": "Boolean expression to filter rows from the logical model for \"admin_rp_inventory\". All fields are combined with a logical 'AND'.", + "name": "admin_dashboard_inventory_bool_exp_bool_exp", + "description": "Boolean expression to filter rows from the logical model for \"admin_dashboard_inventory\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -13379,7 +14679,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_bool_exp_bool_exp", + "name": "admin_dashboard_inventory_bool_exp_bool_exp", "ofType": null } } @@ -13393,7 +14693,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_bool_exp_bool_exp", + "name": "admin_dashboard_inventory_bool_exp_bool_exp", "ofType": null }, "defaultValue": null, @@ -13411,7 +14711,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_bool_exp_bool_exp", + "name": "admin_dashboard_inventory_bool_exp_bool_exp", "ofType": null } } @@ -13421,7 +14721,7 @@ "deprecationReason": null }, { - "name": "distinct_manager_keys", + "name": "active_api_keys", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13433,7 +14733,7 @@ "deprecationReason": null }, { - "name": "managed_rps", + "name": "active_apps", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13445,7 +14745,7 @@ "deprecationReason": null }, { - "name": "managed_with_key", + "name": "active_teams", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13457,7 +14757,7 @@ "deprecationReason": null }, { - "name": "managed_without_key", + "name": "deleted_apps", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13469,7 +14769,7 @@ "deprecationReason": null }, { - "name": "rps_on_shared_keys", + "name": "deleted_teams", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13481,7 +14781,7 @@ "deprecationReason": null }, { - "name": "self_managed_rps", + "name": "new_apps", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13493,7 +14793,7 @@ "deprecationReason": null }, { - "name": "shared_key_groups", + "name": "new_teams", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13505,7 +14805,7 @@ "deprecationReason": null }, { - "name": "staging_status_deactivated", + "name": "new_users", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13517,91 +14817,7 @@ "deprecationReason": null }, { - "name": "staging_status_failed", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "staging_status_null", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "staging_status_pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "staging_status_registered", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_deactivated", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_failed", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_registered", + "name": "pending_invites", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13613,7 +14829,7 @@ "deprecationReason": null }, { - "name": "total_rps", + "name": "total_users", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -13631,110 +14847,68 @@ }, { "kind": "ENUM", - "name": "admin_rp_inventory_enum_name", + "name": "admin_dashboard_inventory_enum_name", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "distinct_manager_keys", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_rps", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_with_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managed_without_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rps_on_shared_keys", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "self_managed_rps", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shared_key_groups", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "staging_status_deactivated", + "name": "active_api_keys", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status_failed", + "name": "active_apps", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status_null", + "name": "active_teams", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status_pending", + "name": "deleted_apps", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status_registered", + "name": "deleted_teams", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status_deactivated", + "name": "new_apps", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status_failed", + "name": "new_teams", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status_pending", + "name": "new_users", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status_registered", + "name": "pending_invites", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "total_rps", + "name": "total_users", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -13744,12 +14918,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_order_by", - "description": "Ordering options when selecting data from \"admin_rp_inventory\".", + "name": "admin_dashboard_inventory_order_by", + "description": "Ordering options when selecting data from \"admin_dashboard_inventory\".", "fields": null, "inputFields": [ { - "name": "distinct_manager_keys", + "name": "active_api_keys", "description": null, "type": { "kind": "ENUM", @@ -13761,7 +14935,7 @@ "deprecationReason": null }, { - "name": "managed_rps", + "name": "active_apps", "description": null, "type": { "kind": "ENUM", @@ -13773,7 +14947,7 @@ "deprecationReason": null }, { - "name": "managed_with_key", + "name": "active_teams", "description": null, "type": { "kind": "ENUM", @@ -13785,7 +14959,7 @@ "deprecationReason": null }, { - "name": "managed_without_key", + "name": "deleted_apps", "description": null, "type": { "kind": "ENUM", @@ -13797,7 +14971,7 @@ "deprecationReason": null }, { - "name": "rps_on_shared_keys", + "name": "deleted_teams", "description": null, "type": { "kind": "ENUM", @@ -13809,7 +14983,7 @@ "deprecationReason": null }, { - "name": "self_managed_rps", + "name": "new_apps", "description": null, "type": { "kind": "ENUM", @@ -13821,7 +14995,7 @@ "deprecationReason": null }, { - "name": "shared_key_groups", + "name": "new_teams", "description": null, "type": { "kind": "ENUM", @@ -13833,7 +15007,7 @@ "deprecationReason": null }, { - "name": "staging_status_deactivated", + "name": "new_users", "description": null, "type": { "kind": "ENUM", @@ -13845,7 +15019,7 @@ "deprecationReason": null }, { - "name": "staging_status_failed", + "name": "pending_invites", "description": null, "type": { "kind": "ENUM", @@ -13857,7 +15031,7 @@ "deprecationReason": null }, { - "name": "staging_status_null", + "name": "total_users", "description": null, "type": { "kind": "ENUM", @@ -13867,135 +15041,123 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "admin_dashboard_queue", + "description": null, + "fields": [ { - "name": "staging_status_pending", + "name": "email", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status_registered", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_deactivated", + "name": "kind", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_failed", + "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_pending", + "name": "owner_email", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status_registered", + "name": "owner_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total_rps", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key", - "description": "columns and relationships of \"api_key\"", - "fields": [ - { - "name": "api_key", + "name": "owner_name", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "team_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "total_count", "description": null, "args": [], "type": { @@ -14003,7 +15165,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null } }, @@ -14011,150 +15173,123 @@ "deprecationReason": null }, { - "name": "is_active", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_bool_exp_bool_exp", + "description": "Boolean expression to filter rows from the logical model for \"admin_dashboard_queue\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "_and", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_bool_exp_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "_not", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_bool_exp_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_bool_exp_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "email", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key_aggregate", - "description": "aggregated selection of \"api_key\"", - "fields": [ + }, { - "name": "aggregate", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "api_key_aggregate_fields", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "kind", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "api_key", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "bool_and", + "name": "name", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_bool_and", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14162,11 +15297,11 @@ "deprecationReason": null }, { - "name": "bool_or", + "name": "owner_email", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_bool_or", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14174,50 +15309,35 @@ "deprecationReason": null }, { - "name": "count", + "name": "owner_id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_count", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_bool_and", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "owner_name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_and_arguments_columns", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "team_id", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14225,11 +15345,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "total_count", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14237,16 +15357,12 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "updated_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -14258,104 +15374,100 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_bool_or", + "kind": "ENUM", + "name": "admin_dashboard_queue_enum_name", "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "arguments", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_or_arguments_columns", - "ofType": null - } - }, - "defaultValue": null, + "name": "email", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "kind", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } - }, - "defaultValue": null, + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_email", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total_count", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp_count", - "description": null, + "name": "admin_dashboard_queue_order_by", + "description": "Ordering options when selecting data from \"admin_dashboard_queue\".", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "email", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14363,11 +15475,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "kind", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14375,118 +15487,55 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key_aggregate_fields", - "description": "aggregate fields of \"api_key\"", - "fields": [ + }, { - "name": "count", + "name": "owner_email", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "owner_id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "api_key_max_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "owner_name", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "api_key_min_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_order_by", - "description": "order by aggregate values of table \"api_key\"", - "fields": null, - "inputFields": [ + }, { - "name": "count", + "name": "team_id", "description": null, "type": { "kind": "ENUM", @@ -14498,11 +15547,11 @@ "deprecationReason": null }, { - "name": "max", + "name": "total_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14510,11 +15559,11 @@ "deprecationReason": null }, { - "name": "min", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_min_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -14527,312 +15576,320 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "api_key_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"api_key\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "admin_rp_inventory", + "description": null, + "fields": [ { - "name": "data", + "name": "distinct_manager_keys", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "description": "Boolean expression to filter rows from the table \"api_key\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", + "name": "managed_rps", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "managed_with_key", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", + "name": "managed_without_key", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "api_key", + "name": "rps_on_shared_keys", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "self_managed_rps", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "shared_key_groups", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_active", + "name": "staging_status_deactivated", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "staging_status_failed", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "staging_status_null", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "staging_status_pending", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "staging_status_registered", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "api_key_constraint", - "description": "unique or primary key constraints on table \"api_key\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "api_key_pkey", - "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_insert_input", - "description": "input type for inserting data into table \"api_key\"", - "fields": null, - "inputFields": [ + }, { - "name": "api_key", + "name": "status_deactivated", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "status_failed", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "status_pending", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_active", + "name": "status_registered", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "total_rps", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "admin_rp_inventory_bool_exp_bool_exp", + "description": "Boolean expression to filter rows from the logical model for \"admin_rp_inventory\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "team", + "name": "_and", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "admin_rp_inventory_bool_exp_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "admin_rp_inventory_bool_exp_bool_exp", "ofType": null }, "defaultValue": null, @@ -14840,117 +15897,103 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "admin_rp_inventory_bool_exp_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "api_key", + "name": "distinct_manager_keys", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "managed_rps", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "managed_with_key", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "managed_without_key", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "rps_on_shared_keys", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "self_managed_rps", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_max_order_by", - "description": "order by max() on columns of table \"api_key\"", - "fields": null, - "inputFields": [ + }, { - "name": "api_key", + "name": "shared_key_groups", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14958,11 +16001,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "staging_status_deactivated", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14970,11 +16013,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "staging_status_failed", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14982,11 +16025,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "staging_status_null", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -14994,11 +16037,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "staging_status_pending", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -15006,113 +16049,203 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "staging_status_registered", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "api_key", + "name": "status_deactivated", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "status_failed", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "status_pending", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "status_registered", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "total_rps", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "admin_rp_inventory_enum_name", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "distinct_manager_keys", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "name": "managed_rps", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "managed_with_key", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "managed_without_key", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rps_on_shared_keys", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "self_managed_rps", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shared_key_groups", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status_deactivated", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status_failed", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status_null", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status_pending", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status_registered", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_deactivated", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_failed", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_pending", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_registered", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total_rps", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "api_key_min_order_by", - "description": "order by min() on columns of table \"api_key\"", + "name": "admin_rp_inventory_order_by", + "description": "Ordering options when selecting data from \"admin_rp_inventory\".", "fields": null, "inputFields": [ { - "name": "api_key", + "name": "distinct_manager_keys", "description": null, "type": { "kind": "ENUM", @@ -15124,7 +16257,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "managed_rps", "description": null, "type": { "kind": "ENUM", @@ -15136,7 +16269,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "managed_with_key", "description": null, "type": { "kind": "ENUM", @@ -15148,7 +16281,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "managed_without_key", "description": null, "type": { "kind": "ENUM", @@ -15160,7 +16293,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "rps_on_shared_keys", "description": null, "type": { "kind": "ENUM", @@ -15172,7 +16305,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "self_managed_rps", "description": null, "type": { "kind": "ENUM", @@ -15182,134 +16315,45 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "api_key_mutation_response", - "description": "response of any mutation on the table \"api_key\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "api_key", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_on_conflict", - "description": "on_conflict condition type for table \"api_key\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", + "name": "shared_key_groups", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_constraint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "staging_status_deactivated", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "api_key_update_column", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "staging_status_failed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_order_by", - "description": "Ordering options when selecting data from \"api_key\".", - "fields": null, - "inputFields": [ + }, { - "name": "api_key", + "name": "staging_status_null", "description": null, "type": { "kind": "ENUM", @@ -15321,7 +16365,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "staging_status_pending", "description": null, "type": { "kind": "ENUM", @@ -15333,7 +16377,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "staging_status_registered", "description": null, "type": { "kind": "ENUM", @@ -15345,7 +16389,7 @@ "deprecationReason": null }, { - "name": "is_active", + "name": "status_deactivated", "description": null, "type": { "kind": "ENUM", @@ -15357,7 +16401,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "status_failed", "description": null, "type": { "kind": "ENUM", @@ -15369,11 +16413,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "status_pending", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -15381,7 +16425,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "status_registered", "description": null, "type": { "kind": "ENUM", @@ -15393,7 +16437,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "total_rps", "description": null, "type": { "kind": "ENUM", @@ -15410,14 +16454,14 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "api_key_pk_columns_input", - "description": "primary key columns input for table: api_key", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "api_key", + "description": "columns and relationships of \"api_key\"", + "fields": [ { - "name": "id", + "name": "api_key", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -15427,114 +16471,186 @@ "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "api_key_select_column", - "description": "select columns of table \"api_key\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "api_key", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "is_active", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "name", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "team_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"api_key_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"api_key\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "api_key_aggregate", + "description": "aggregated selection of \"api_key\"", + "fields": [ { - "name": "is_active", - "description": "column name", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "api_key_aggregate_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"api_key_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"api_key\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "is_active", - "description": "column name", + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "api_key", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "api_key_set_input", - "description": "input type for updating data in table \"api_key\"", + "name": "api_key_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "api_key", + "name": "bool_and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp_bool_and", "ofType": null }, "defaultValue": null, @@ -15542,11 +16658,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "bool_or", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp_bool_or", "ofType": null }, "defaultValue": null, @@ -15554,35 +16670,50 @@ "deprecationReason": null }, { - "name": "id", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp_bool_and", + "description": null, + "fields": null, + "inputFields": [ { - "name": "is_active", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_and_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15590,11 +16721,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -15602,55 +16733,20 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "predicate", "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_stream_cursor_input", - "description": "Streaming cursor of the table \"api_key\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_stream_cursor_value_input", + "name": "Boolean_comparison_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -15659,28 +16755,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "api_key_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "api_key_aggregate_bool_exp_bool_or", + "description": null, "fields": null, "inputFields": [ { - "name": "api_key", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_or_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15688,11 +16788,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -15700,35 +16800,58 @@ "deprecationReason": null }, { - "name": "is_active", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "api_key_select_column", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15736,87 +16859,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "filter", "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "api_key_update_column", - "description": "update columns of table \"api_key\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "api_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_active", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "api_key_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "api_key_set_input", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -15824,14 +16871,14 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "predicate", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "Int_comparison_exp", "ofType": null } }, @@ -15846,16 +16893,16 @@ }, { "kind": "OBJECT", - "name": "app", - "description": "columns and relationships of \"app\"", + "name": "api_key_aggregate_fields", + "description": "aggregate fields of \"api_key\"", "fields": [ { - "name": "actions", - "description": "An array relationship", + "name": "count", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "columns", + "description": null, "type": { "kind": "LIST", "name": null, @@ -15864,7 +16911,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_select_column", + "name": "api_key_select_column", "ofType": null } } @@ -15874,55 +16921,11 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "distinct", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15934,939 +16937,528 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "actions_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "max", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action_aggregate", - "ofType": null - } + "kind": "OBJECT", + "name": "api_key_max_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "min", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_metadata", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "api_key_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_order_by", + "description": "order by aggregate values of table \"api_key\"", + "fields": null, + "inputFields": [ { - "name": "app_metadata_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_metadata_aggregate", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "max", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "api_key_max_order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "min", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "api_key_min_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"api_key\"", + "fields": null, + "inputFields": [ { - "name": "description_internal", + "name": "data", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_insert_input", + "ofType": null + } + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dev_rewards_approved", - "description": null, - "args": [], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "api_key_on_conflict", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "description": "Boolean expression to filter rows from the table \"api_key\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "engine", + "name": "_and", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "first_verified_at", + "name": "_not", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "has_airdrop_component", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "api_key", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_archived", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_banned", + "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_staging", + "name": "is_active", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_url", + "name": "name", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "team", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_count", + "name": "team_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "api_key_constraint", + "description": "unique or primary key constraints on table \"api_key\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "api_key_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_insert_input", + "description": "input type for inserting data into table \"api_key\"", + "fields": null, + "inputFields": [ + { + "name": "api_key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_registration", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "rp_registration_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "rp_registration", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_registration_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "rp_registration_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "rp_registration_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "is_active", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "name", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "team", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_obj_rel_insert_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_aggregate", - "description": "aggregated selection of \"app\"", + "name": "api_key_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "aggregate", + "name": "api_key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_aggregate_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "bool_and", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_bool_and", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bool_or", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_bool_or", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "team_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_bool_and", - "description": null, + "name": "api_key_max_order_by", + "description": "order by max() on columns of table \"api_key\"", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "api_key", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column_app_aggregate_bool_exp_bool_and_arguments_columns", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -16874,11 +17466,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -16886,16 +17478,36 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -16907,104 +17519,112 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_bool_or", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "api_key_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "arguments", + "name": "api_key", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column_app_aggregate_bool_exp_bool_or_arguments_columns", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "predicate", + "name": "name", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp_count", - "description": null, + "name": "api_key_min_order_by", + "description": "order by min() on columns of table \"api_key\"", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "api_key", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -17012,11 +17632,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -17024,16 +17644,36 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "name", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -17046,244 +17686,351 @@ }, { "kind": "OBJECT", - "name": "app_aggregate_fields", - "description": "aggregate fields of \"app\"", + "name": "api_key_mutation_response", + "description": "response of any mutation on the table \"api_key\"", "fields": [ { - "name": "avg", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "app_avg_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column", - "ofType": null - } + "kind": "OBJECT", + "name": "api_key", + "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_on_conflict", + "description": "on_conflict condition type for table \"api_key\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "api_key_constraint", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "update_columns", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_max_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "api_key_update_column", + "ofType": null + } + } + } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "where", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_min_fields", + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_order_by", + "description": "Ordering options when selecting data from \"api_key\".", + "fields": null, + "inputFields": [ + { + "name": "api_key", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_stddev_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_stddev_pop_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "is_active", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_stddev_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "name", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_sum_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "team", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_var_pop_fields", + "kind": "INPUT_OBJECT", + "name": "team_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "team_id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_var_samp_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_variance_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_aggregate_order_by", - "description": "order by aggregate values of table \"app\"", + "name": "api_key_pk_columns_input", + "description": "primary key columns input for table: api_key", "fields": null, "inputFields": [ { - "name": "avg", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_avg_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "api_key_select_column", + "description": "select columns of table \"api_key\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "api_key", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_max_order_by", - "ofType": null - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_min_order_by", - "ofType": null - }, - "defaultValue": null, + "name": "is_active", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"api_key_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"api_key\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_active", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "api_key_select_column_api_key_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"api_key_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"api_key\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "is_active", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "api_key_set_input", + "description": "input type for updating data in table \"api_key\"", + "fields": null, + "inputFields": [ + { + "name": "api_key", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_stddev_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17291,11 +18038,11 @@ "deprecationReason": null }, { - "name": "stddev_pop", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_stddev_pop_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -17303,11 +18050,11 @@ "deprecationReason": null }, { - "name": "stddev_samp", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_stddev_samp_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17315,11 +18062,11 @@ "deprecationReason": null }, { - "name": "sum", + "name": "is_active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_sum_order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -17327,11 +18074,11 @@ "deprecationReason": null }, { - "name": "var_pop", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_var_pop_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17339,11 +18086,11 @@ "deprecationReason": null }, { - "name": "var_samp", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_var_samp_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17351,11 +18098,11 @@ "deprecationReason": null }, { - "name": "variance", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_variance_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -17369,28 +18116,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"app\"", + "name": "api_key_stream_cursor_input", + "description": "Streaming cursor of the table \"api_key\"", "fields": null, "inputFields": [ { - "name": "data", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "api_key_stream_cursor_value_input", + "ofType": null } }, "defaultValue": null, @@ -17398,81 +18137,11 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "app_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "rating_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_avg_order_by", - "description": "order by avg() on columns of table \"app\"", - "fields": null, - "inputFields": [ - { - "name": "rating_count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_sum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -17486,104 +18155,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "description": "Boolean expression to filter rows from the table \"app\". All fields are combined with a logical 'AND'.", + "name": "api_key_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actions_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "action_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_metadata", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_metadata_aggregate", + "name": "api_key", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17594,80 +18175,8 @@ "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_internal", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dev_rewards_approved", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "engine", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first_verified_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "has_airdrop_component", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -17678,32 +18187,8 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_archived", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_banned", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17711,11 +18196,11 @@ "deprecationReason": null }, { - "name": "is_staging", + "name": "is_active", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -17723,11 +18208,11 @@ "deprecationReason": null }, { - "name": "logo_url", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17735,11 +18220,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -17747,253 +18232,126 @@ "deprecationReason": null }, { - "name": "rating_count", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "api_key_update_column", + "description": "update columns of table \"api_key\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "rating_sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "api_key", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_registration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_registration_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "is_active", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verified_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_constraint", - "description": "unique or primary key constraints on table \"app\"", + "kind": "INPUT_OBJECT", + "name": "api_key_updates", + "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_daily_users", - "description": "columns and relationships of \"app_daily_users\"", - "fields": [ - { - "name": "app_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_daily_users_aggregate", - "description": "aggregated selection of \"app_daily_users\"", - "fields": [ + "inputFields": [ { - "name": "aggregate", - "description": null, - "args": [], + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "OBJECT", - "name": "app_daily_users_aggregate_fields", + "kind": "INPUT_OBJECT", + "name": "api_key_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_daily_users", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_daily_users_aggregate_fields", - "description": "aggregate fields of \"app_daily_users\"", + "name": "app", + "description": "columns and relationships of \"app\"", "fields": [ { - "name": "count", - "description": null, + "name": "actions", + "description": "An array relationship", "args": [ { - "name": "columns", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { "kind": "LIST", "name": null, @@ -18002,7 +18360,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_daily_users_select_column", + "name": "action_select_column", "ofType": null } } @@ -18012,11 +18370,55 @@ "deprecationReason": null }, { - "name": "distinct", - "description": null, + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", "ofType": null }, "defaultValue": null, @@ -18028,316 +18430,503 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], + "name": "actions_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "app_daily_users_max_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "app_daily_users_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_daily_users\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, + "name": "app_metadata", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_metadata", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", - "description": null, + "name": "app_metadata_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_metadata_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "deleted_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "description_internal", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_daily_users_constraint", - "description": "unique or primary key constraints on table \"app_daily_users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_daily_users_pkey", - "description": "unique or primary key constraint on columns \"date\", \"app_id\", \"nullifier_hash\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_insert_input", - "description": "input type for inserting data into table \"app_daily_users\"", - "fields": null, - "inputFields": [ - { - "name": "app_id", + "name": "dev_rewards_approved", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "engine", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "first_verified_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamp", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_daily_users_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "app_id", + "name": "has_airdrop_component", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "is_archived", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_daily_users_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "app_id", + "name": "is_banned", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "is_staging", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "date", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "logo_url", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_daily_users_mutation_response", - "description": "response of any mutation on the table \"app_daily_users\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "name", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -18345,60 +18934,118 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "rating_count", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_daily_users", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_on_conflict", - "description": "on_conflict condition type for table \"app_daily_users\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "rating_sum", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_daily_users_constraint", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, + "name": "rp_registration", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "rp_registration_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -18409,90 +19056,145 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_daily_users_update_column", + "kind": "OBJECT", + "name": "rp_registration", "ofType": null } } } }, - "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_order_by", - "description": "Ordering options when selecting data from \"app_daily_users\".", - "fields": null, - "inputFields": [ - { - "name": "app_id", - "description": null, + "name": "rp_registration_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "rp_registration_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "rp_registration_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "status", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, + "name": "team", + "description": "An object relationship", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_pk_columns_input", - "description": "primary key columns input for table: app_daily_users", - "fields": null, - "inputFields": [ + }, { - "name": "app_id", + "name": "team_id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -18502,88 +19204,102 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "date", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "date", + "name": "timestamptz", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "verified_at", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_daily_users_select_column", - "description": "select columns of table \"app_daily_users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "app_aggregate", + "description": "aggregated selection of \"app\"", + "fields": [ { - "name": "date", - "description": "column name", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_aggregate_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": "column name", + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_daily_users_set_input", - "description": "input type for updating data in table \"app_daily_users\"", + "name": "app_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "app_id", + "name": "bool_and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_aggregate_bool_exp_bool_and", "ofType": null }, "defaultValue": null, @@ -18591,11 +19307,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "bool_or", "description": null, "type": { - "kind": "SCALAR", - "name": "date", + "kind": "INPUT_OBJECT", + "name": "app_aggregate_bool_exp_bool_or", "ofType": null }, "defaultValue": null, @@ -18603,11 +19319,11 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, @@ -18621,19 +19337,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_daily_users_stream_cursor_input", - "description": "Streaming cursor of the table \"app_daily_users\"", + "name": "app_aggregate_bool_exp_bool_and", + "description": null, "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "arguments", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_stream_cursor_value_input", + "kind": "ENUM", + "name": "app_select_column_app_aggregate_bool_exp_bool_and_arguments_columns", "ofType": null } }, @@ -18642,46 +19358,23 @@ "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "distinct", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "app_id", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "date", + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -18689,12 +19382,16 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -18705,96 +19402,34 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "app_daily_users_update_column", - "description": "update columns of table \"app_daily_users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "app_daily_users_updates", + "name": "app_aggregate_bool_exp_bool_or", "description": null, "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "arguments", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", + "kind": "ENUM", + "name": "app_select_column_app_aggregate_bool_exp_bool_or_arguments_columns", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_flow_on_complete_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"app_flow_on_complete_enum\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_eq", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -18802,11 +19437,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -18814,19 +19449,34 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "_in", + "name": "arguments", "description": null, "type": { "kind": "LIST", @@ -18835,8 +19485,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "kind": "ENUM", + "name": "app_select_column", "ofType": null } } @@ -18846,7 +19496,7 @@ "deprecationReason": null }, { - "name": "_is_null", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", @@ -18858,35 +19508,11 @@ "deprecationReason": null }, { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_neq", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -18894,19 +19520,15 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "predicate", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "app_flow_on_complete_enum", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null } }, "defaultValue": null, @@ -18919,172 +19541,197 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_inc_input", - "description": "input type for incrementing numeric columns in table \"app\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_aggregate_fields", + "description": "aggregate fields of \"app\"", + "fields": [ { - "name": "rating_count", + "name": "avg", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "app_avg_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_insert_input", - "description": "input type for inserting data into table \"app\"", - "fields": null, - "inputFields": [ - { - "name": "actions", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "action_arr_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata", + "name": "max", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_arr_rel_insert_input", + "kind": "OBJECT", + "name": "app_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "min", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_internal", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_stddev_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dev_rewards_approved", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "app_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", + "name": "sum", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_sum_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "first_verified_at", + "name": "var_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "OBJECT", + "name": "app_var_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "has_airdrop_component", + "name": "var_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "app_var_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "variance", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_variance_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_aggregate_order_by", + "description": "order by aggregate values of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "is_archived", + "name": "avg", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "app_avg_order_by", "ofType": null }, "defaultValue": null, @@ -19092,11 +19739,11 @@ "deprecationReason": null }, { - "name": "is_banned", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -19104,11 +19751,11 @@ "deprecationReason": null }, { - "name": "is_staging", + "name": "max", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "app_max_order_by", "ofType": null }, "defaultValue": null, @@ -19116,11 +19763,11 @@ "deprecationReason": null }, { - "name": "logo_url", + "name": "min", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_min_order_by", "ofType": null }, "defaultValue": null, @@ -19128,11 +19775,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "stddev", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_stddev_order_by", "ofType": null }, "defaultValue": null, @@ -19140,11 +19787,11 @@ "deprecationReason": null }, { - "name": "rating_count", + "name": "stddev_pop", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "app_stddev_pop_order_by", "ofType": null }, "defaultValue": null, @@ -19152,11 +19799,11 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "stddev_samp", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "app_stddev_samp_order_by", "ofType": null }, "defaultValue": null, @@ -19164,11 +19811,11 @@ "deprecationReason": null }, { - "name": "rp_registration", + "name": "sum", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_arr_rel_insert_input", + "name": "app_sum_order_by", "ofType": null }, "defaultValue": null, @@ -19176,11 +19823,11 @@ "deprecationReason": null }, { - "name": "status", + "name": "var_pop", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_var_pop_order_by", "ofType": null }, "defaultValue": null, @@ -19188,11 +19835,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "var_samp", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", + "name": "app_var_samp_order_by", "ofType": null }, "defaultValue": null, @@ -19200,35 +19847,58 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "variance", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_variance_order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"app\"", + "fields": null, + "inputFields": [ { - "name": "updated_at", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "app_on_conflict", "ofType": null }, "defaultValue": null, @@ -19242,195 +19912,246 @@ }, { "kind": "OBJECT", - "name": "app_max_fields", - "description": "aggregate max on columns", + "name": "app_avg_fields", + "description": "aggregate avg on columns", "fields": [ { - "name": "created_at", + "name": "rating_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "rating_sum", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_avg_order_by", + "description": "order by avg() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "description_internal", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "first_verified_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamp", + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "description": "Boolean expression to filter rows from the table \"app\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_url", + "name": "actions_aggregate", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_aggregate_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "app_metadata", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_count", + "name": "app_metadata_aggregate", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "deleted_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "description_internal", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "dev_rewards_approved", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "engine", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_max_order_by", - "description": "order by max() on columns of table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "first_verified_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamp_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19438,11 +20159,11 @@ "deprecationReason": null }, { - "name": "deleted_at", + "name": "has_airdrop_component", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19450,11 +20171,11 @@ "deprecationReason": null }, { - "name": "description_internal", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19462,11 +20183,11 @@ "deprecationReason": null }, { - "name": "engine", + "name": "is_archived", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19474,11 +20195,11 @@ "deprecationReason": null }, { - "name": "first_verified_at", + "name": "is_banned", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19486,11 +20207,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_staging", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19501,8 +20222,8 @@ "name": "logo_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19513,8 +20234,8 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19525,8 +20246,8 @@ "name": "rating_count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19537,8 +20258,32 @@ "name": "rating_sum", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rp_registration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rp_registration_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_aggregate_bool_exp", "ofType": null }, "defaultValue": null, @@ -19549,8 +20294,20 @@ "name": "status", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -19561,8 +20318,8 @@ "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19573,8 +20330,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19585,8 +20342,8 @@ "name": "verified_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -19598,21 +20355,38 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "app_constraint", + "description": "unique or primary key constraints on table \"app\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "app_metadata", - "description": "columns and relationships of \"app_metadata\"", + "name": "app_daily_users", + "description": "columns and relationships of \"app_daily_users\"", "fields": [ { - "name": "app", - "description": "An object relationship", + "name": "app_id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "app", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -19620,7 +20394,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "date", "description": null, "args": [], "type": { @@ -19628,7 +20402,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null } }, @@ -19636,7 +20410,7 @@ "deprecationReason": null }, { - "name": "app_mode", + "name": "nullifier_hash", "description": null, "args": [], "type": { @@ -19650,65 +20424,108 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_daily_users_aggregate", + "description": "aggregated selection of \"app_daily_users\"", + "fields": [ { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", + "name": "aggregate", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "OBJECT", + "name": "app_daily_users_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_website_url", + "name": "nodes", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associated_domains", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_daily_users", + "ofType": null + } } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_daily_users_aggregate_fields", + "description": "aggregate fields of \"app_daily_users\"", + "fields": [ { - "name": "can_import_all_contacts", + "name": "count", "description": null, - "args": [], + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_daily_users_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -19716,69 +20533,76 @@ "deprecationReason": null }, { - "name": "can_use_attestation", + "name": "max", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "app_daily_users_max_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "category", + "name": "min", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "app_daily_users_min_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_daily_users\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "changelog", + "name": "_and", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "content_card_image_url", + "name": "_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contracts", + "name": "_or", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -19786,197 +20610,230 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "nullifier_hash", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "id", + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_daily_users_constraint", + "description": "unique or primary key constraints on table \"app_daily_users\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_daily_users_pkey", + "description": "unique or primary key constraint on columns \"date\", \"app_id\", \"nullifier_hash\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_insert_input", + "description": "input type for inserting data into table \"app_daily_users\"", + "fields": null, + "inputFields": [ + { + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "integration_url", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allowed_unlimited_notifications", + "name": "nullifier_hash", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_daily_users_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "is_android_only", + "name": "app_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_developer_allow_listing", + "name": "date", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_for_humans_only", + "name": "nullifier_hash", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_daily_users_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "is_reviewer_app_store_approved", + "name": "app_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_reviewer_world_app_approved", + "name": "date", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_row_verified", + "name": "nullifier_hash", "description": null, "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_daily_users_mutation_response", + "description": "response of any mutation on the table \"app_daily_users\"", + "fields": [ + { + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, @@ -19984,86 +20841,9 @@ "deprecationReason": null }, { - "name": "localisations", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "localisations_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -20075,7 +20855,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations", + "name": "app_daily_users", "ofType": null } } @@ -20083,184 +20863,132 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_on_conflict", + "description": "on_conflict condition type for table \"app_daily_users\"", + "fields": null, + "inputFields": [ { - "name": "localisations_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "localisations_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "constraint", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "localisations_aggregate", + "kind": "ENUM", + "name": "app_daily_users_constraint", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_img_url", + "name": "update_columns", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_daily_users_update_column", + "ofType": null + } + } } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "where", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_order_by", + "description": "Ordering options when selecting data from \"app_daily_users\".", + "fields": null, + "inputFields": [ { - "name": "meta_tag_image_url", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "nullifier_hash", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_pk_columns_input", + "description": "primary key columns input for table: app_daily_users", + "fields": null, + "inputFields": [ { - "name": "review_message", + "name": "app_id", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -20270,29 +20998,29 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "date", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", + "name": "nullifier_hash", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -20302,278 +21030,267 @@ "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_daily_users_select_column", + "description": "select columns of table \"app_daily_users\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "should_uninstall_on_delist", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, + "name": "date", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, + "name": "nullifier_hash", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_set_input", + "description": "input type for updating data in table \"app_daily_users\"", + "fields": null, + "inputFields": [ { - "name": "source_code_url", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "support_link", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_countries", + "name": "nullifier_hash", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_stream_cursor_input", + "description": "Streaming cursor of the table \"app_daily_users\"", + "fields": null, + "inputFields": [ { - "name": "supported_languages", - "description": null, - "args": [], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_daily_users_stream_cursor_value_input", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "verification_status", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "date", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "date", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelisted_addresses", + "name": "nullifier_hash", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_daily_users_update_column", + "description": "update columns of table \"app_daily_users\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "date", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "nullifier_hash", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_metadata_aggregate", - "description": "aggregated selection of \"app_metadata\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_daily_users_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "aggregate", - "description": null, - "args": [], + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "OBJECT", - "name": "app_metadata_aggregate_fields", + "kind": "INPUT_OBJECT", + "name": "app_daily_users_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_metadata", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "description": null, + "fields": null, "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp", - "description": null, + "name": "app_flow_on_complete_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"app_flow_on_complete_enum\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "bool_and", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_bool_and", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", "ofType": null }, "defaultValue": null, @@ -20581,11 +21298,11 @@ "deprecationReason": null }, { - "name": "bool_or", + "name": "_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_bool_or", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", "ofType": null }, "defaultValue": null, @@ -20593,38 +21310,31 @@ "deprecationReason": null }, { - "name": "count", + "name": "_gte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_bool_and", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "_in", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_and_arguments_columns", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + } } }, "defaultValue": null, @@ -20632,7 +21342,7 @@ "deprecationReason": null }, { - "name": "distinct", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", @@ -20644,11 +21354,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", "ofType": null }, "defaultValue": null, @@ -20656,15 +21366,43 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "_lte", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "app_flow_on_complete_enum", + "ofType": null + } } }, "defaultValue": null, @@ -20678,32 +21416,51 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_bool_or", - "description": null, + "name": "app_inc_input", + "description": "input type for incrementing numeric columns in table \"app\"", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "rating_count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_or_arguments_columns", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "rating_sum", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_insert_input", + "description": "input type for inserting data into table \"app\"", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_arr_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -20711,11 +21468,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "app_metadata", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "name": "app_metadata_arr_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -20723,54 +21480,43 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "created_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "deleted_at", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "description_internal", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev_rewards_approved", "description": null, "type": { "kind": "SCALAR", @@ -20782,11 +21528,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "engine", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -20794,218 +21540,155 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "first_verified_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_aggregate_fields", - "description": "aggregate fields of \"app_metadata\"", - "fields": [ + }, { - "name": "avg", + "name": "has_airdrop_component", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_avg_fields", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "id", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "is_archived", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_max_fields", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "is_banned", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_min_fields", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "is_staging", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_stddev_fields", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "logo_url", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_stddev_pop_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "name", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_stddev_samp_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_sum_fields", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_var_pop_fields", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "rp_registration", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_var_samp_fields", + "kind": "INPUT_OBJECT", + "name": "rp_registration_arr_rel_insert_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "status", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_variance_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_order_by", - "description": "order by aggregate values of table \"app_metadata\"", - "fields": null, - "inputFields": [ + }, { - "name": "avg", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_avg_order_by", + "name": "team_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -21013,11 +21696,11 @@ "deprecationReason": null }, { - "name": "count", + "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -21025,11 +21708,11 @@ "deprecationReason": null }, { - "name": "max", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_max_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -21037,177 +21720,190 @@ "deprecationReason": null }, { - "name": "min", + "name": "verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_min_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_max_fields", + "description": "aggregate max on columns", + "fields": [ + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stddev", + "name": "deleted_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "description_internal", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_pop_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "engine", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_samp_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "first_verified_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_sum_order_by", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_var_pop_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "logo_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_var_samp_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_variance_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"app_metadata\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "rating_count", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_insert_input", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "rating_sum", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_on_conflict", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_avg_fields", - "description": "aggregate avg on columns", - "fields": [ + }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", + "name": "status", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "team_id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, @@ -21221,12 +21917,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_avg_order_by", - "description": "order by avg() on columns of table \"app_metadata\"", + "name": "app_max_order_by", + "description": "order by max() on columns of table \"app\"", "fields": null, "inputFields": [ { - "name": "max_notifications_per_day", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -21236,44 +21932,25 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_metadata\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", + "name": "deleted_at", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "description_internal", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21281,31 +21958,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "engine", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app", + "name": "first_verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21313,11 +21982,11 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21325,11 +21994,11 @@ "deprecationReason": null }, { - "name": "app_mode", + "name": "logo_url", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21337,11 +22006,11 @@ "deprecationReason": null }, { - "name": "app_rating", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21349,11 +22018,11 @@ "deprecationReason": null }, { - "name": "app_website_url", + "name": "rating_count", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21361,11 +22030,11 @@ "deprecationReason": null }, { - "name": "associated_domains", + "name": "rating_sum", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21373,11 +22042,11 @@ "deprecationReason": null }, { - "name": "can_import_all_contacts", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21385,11 +22054,11 @@ "deprecationReason": null }, { - "name": "can_use_attestation", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21397,11 +22066,11 @@ "deprecationReason": null }, { - "name": "category", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -21409,557 +22078,801 @@ "deprecationReason": null }, { - "name": "changelog", + "name": "verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata", + "description": "columns and relationships of \"app_metadata\"", + "fields": [ { - "name": "content_card_image_url", - "description": null, + "name": "app", + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contracts", + "name": "app_id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "app_mode", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "app_website_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "associated_domains", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "integration_url", + "name": "can_import_all_contacts", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allowed_unlimited_notifications", + "name": "can_use_attestation", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_android_only", + "name": "category", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_developer_allow_listing", + "name": "changelog", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_for_humans_only", + "name": "content_card_image_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_reviewer_app_store_approved", + "name": "contracts", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_reviewer_world_app_approved", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_row_verified", + "name": "description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "localisations", + "name": "hero_image_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "localisations_aggregate", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_img_url", + "name": "integration_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "is_allowed_unlimited_notifications", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "is_android_only", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "is_developer_allow_listing", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "is_for_humans_only", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_message", + "name": "is_reviewer_app_store_approved", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "is_reviewer_world_app_approved", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", + "name": "is_row_verified", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "should_uninstall_on_delist", - "description": null, + "name": "localisations", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", - "description": null, + "name": "localisations_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source_code_url", + "name": "logo_img_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "support_link", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_countries", + "name": "meta_tag_image_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_languages", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "permit2_tokens", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verification_status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verified_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelisted_addresses", + "name": "review_message", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", + "name": "reviewed_by", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", + "name": "short_name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_metadata_constraint", - "description": "unique or primary key constraints on table \"app_metadata\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_metadata_app_id_is_row_verified_key", - "description": "unique or primary key constraint on columns \"app_id\", \"is_row_verified\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_inc_input", - "description": "input type for incrementing numeric columns in table \"app_metadata\"", - "fields": null, - "inputFields": [ - { - "name": "max_notifications_per_day", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_insert_input", - "description": "input type for inserting data into table \"app_metadata\"", - "fields": null, - "inputFields": [ - { - "name": "app", + "name": "should_uninstall_on_delist", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "showcase_img_urls", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_mode", + "name": "source_code_url", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_website_url", + "name": "support_link", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "associated_domains", + "name": "supported_countries", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -21973,73 +22886,77 @@ } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "can_import_all_contacts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "can_use_attestation", + "name": "supported_languages", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "category", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "changelog", + "name": "verification_status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "content_card_image_url", + "name": "verified_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contracts", + "name": "whitelisted_addresses", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -22053,52 +22970,106 @@ } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "world_app_button_text", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "world_app_description", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_aggregate", + "description": "aggregated selection of \"app_metadata\"", + "fields": [ { - "name": "hero_image_url", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_metadata", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "bool_and", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_bool_and", "ofType": null }, "defaultValue": null, @@ -22106,11 +23077,11 @@ "deprecationReason": null }, { - "name": "integration_url", + "name": "bool_or", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_bool_or", "ofType": null }, "defaultValue": null, @@ -22118,31 +23089,46 @@ "deprecationReason": null }, { - "name": "is_allowed_unlimited_notifications", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_bool_and", + "description": null, + "fields": null, + "inputFields": [ { - "name": "is_android_only", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_and_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_developer_allow_listing", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", @@ -22154,11 +23140,11 @@ "deprecationReason": null }, { - "name": "is_for_humans_only", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -22166,31 +23152,50 @@ "deprecationReason": null }, { - "name": "is_reviewer_app_store_approved", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_bool_or", + "description": null, + "fields": null, + "inputFields": [ { - "name": "is_reviewer_world_app_approved", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_or_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_row_verified", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", @@ -22202,11 +23207,11 @@ "deprecationReason": null }, { - "name": "localisations", + "name": "filter", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "localisations_arr_rel_insert_input", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -22214,35 +23219,58 @@ "deprecationReason": null }, { - "name": "logo_img_url", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "max_notifications_per_day", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -22250,11 +23278,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -22262,163 +23290,218 @@ "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "predicate", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "review_message", + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_aggregate_fields", + "description": "aggregate fields of \"app_metadata\"", + "fields": [ + { + "name": "avg", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata_avg_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_metadata_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", + "name": "min", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "should_uninstall_on_delist", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "app_metadata_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "app_metadata_stddev_pop_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source_code_url", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "support_link", + "name": "sum", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata_sum_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_countries", + "name": "var_pop", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "app_metadata_var_pop_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_languages", + "name": "var_samp", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "app_metadata_var_samp_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "variance", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_metadata_variance_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_aggregate_order_by", + "description": "order by aggregate values of table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "avg", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_avg_order_by", "ofType": null }, "defaultValue": null, @@ -22426,11 +23509,11 @@ "deprecationReason": null }, { - "name": "verification_status", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -22438,11 +23521,11 @@ "deprecationReason": null }, { - "name": "verified_at", + "name": "max", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "app_metadata_max_order_by", "ofType": null }, "defaultValue": null, @@ -22450,31 +23533,23 @@ "deprecationReason": null }, { - "name": "whitelisted_addresses", + "name": "min", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "app_metadata_min_order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", + "name": "stddev", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_order_by", "ofType": null }, "defaultValue": null, @@ -22482,135 +23557,196 @@ "deprecationReason": null }, { - "name": "world_app_description", + "name": "stddev_pop", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_pop_order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "app_id", + "name": "stddev_samp", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_samp_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_mode", + "name": "sum", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_sum_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], + "name": "var_pop", + "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "app_metadata_var_pop_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_website_url", + "name": "var_samp", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_var_samp_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "associated_domains", + "name": "variance", "description": null, - "args": [], "type": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "app_metadata_variance_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_insert_input", + "ofType": null + } } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "category", - "description": null, + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "app_rating", + "description": "A computed field that returns the rating of an app", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "changelog", + "name": "max_notifications_per_day", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_avg_order_by", + "description": "order by avg() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "content_card_image_url", + "name": "max_notifications_per_day", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_metadata\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "contracts", + "name": "_and", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -22618,361 +23754,210 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "_not", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "_or", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "app", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "integration_url", + "name": "app_mode", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_img_url", + "name": "app_rating", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "app_website_url", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "associated_domains", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "can_import_all_contacts", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "can_use_attestation", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_message", + "name": "category", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "changelog", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showcase_img_urls", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_code_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "support_link", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_countries", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_languages", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verification_status", + "name": "content_card_image_url", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "contracts", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelisted_addresses", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world_app_button_text", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_max_order_by", - "description": "order by max() on columns of table \"app_metadata\"", - "fields": null, - "inputFields": [ - { - "name": "app_id", + "name": "description", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -22980,11 +23965,11 @@ "deprecationReason": null }, { - "name": "app_mode", + "name": "hero_image_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -22992,11 +23977,11 @@ "deprecationReason": null }, { - "name": "app_website_url", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23004,11 +23989,11 @@ "deprecationReason": null }, { - "name": "associated_domains", + "name": "integration_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23016,11 +24001,11 @@ "deprecationReason": null }, { - "name": "category", + "name": "is_allowed_unlimited_notifications", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23028,11 +24013,11 @@ "deprecationReason": null }, { - "name": "changelog", + "name": "is_android_only", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23040,11 +24025,11 @@ "deprecationReason": null }, { - "name": "content_card_image_url", + "name": "is_developer_allow_listing", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23052,11 +24037,11 @@ "deprecationReason": null }, { - "name": "contracts", + "name": "is_for_humans_only", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23064,11 +24049,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "is_reviewer_app_store_approved", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23076,11 +24061,11 @@ "deprecationReason": null }, { - "name": "description", + "name": "is_reviewer_world_app_approved", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23088,11 +24073,11 @@ "deprecationReason": null }, { - "name": "hero_image_url", + "name": "is_row_verified", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23100,11 +24085,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "localisations", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, @@ -23112,11 +24097,11 @@ "deprecationReason": null }, { - "name": "integration_url", + "name": "localisations_aggregate", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "localisations_aggregate_bool_exp", "ofType": null }, "defaultValue": null, @@ -23127,8 +24112,8 @@ "name": "logo_img_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23139,8 +24124,8 @@ "name": "max_notifications_per_day", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23151,8 +24136,8 @@ "name": "meta_tag_image_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23163,8 +24148,8 @@ "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23175,8 +24160,8 @@ "name": "permit2_tokens", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23187,8 +24172,8 @@ "name": "review_message", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23199,8 +24184,8 @@ "name": "reviewed_by", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23211,8 +24196,20 @@ "name": "short_name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "should_uninstall_on_delist", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23223,8 +24220,8 @@ "name": "showcase_img_urls", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23235,8 +24232,8 @@ "name": "source_code_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23247,8 +24244,8 @@ "name": "support_link", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23259,8 +24256,8 @@ "name": "supported_countries", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23271,8 +24268,8 @@ "name": "supported_languages", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23283,8 +24280,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23295,8 +24292,8 @@ "name": "verification_status", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23307,8 +24304,8 @@ "name": "verified_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23319,8 +24316,8 @@ "name": "whitelisted_addresses", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23331,8 +24328,8 @@ "name": "world_app_button_text", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23343,8 +24340,8 @@ "name": "world_app_description", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -23357,62 +24354,108 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_metadata_min_fields", - "description": "aggregate min on columns", - "fields": [ + "kind": "ENUM", + "name": "app_metadata_constraint", + "description": "unique or primary key constraints on table \"app_metadata\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "app_id", + "name": "app_metadata_app_id_is_row_verified_key", + "description": "unique or primary key constraint on columns \"app_id\", \"is_row_verified\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_metadata_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_inc_input", + "description": "input type for incrementing numeric columns in table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "max_notifications_per_day", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_insert_input", + "description": "input type for inserting data into table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "app", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_obj_rel_insert_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_mode", + "name": "app_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], + "name": "app_mode", + "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "app_website_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "associated_domains", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23426,49 +24469,73 @@ } } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "can_import_all_contacts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "can_use_attestation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "category", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "changelog", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "content_card_image_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "contracts", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23482,177 +24549,285 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "description", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "hero_image_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "integration_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_img_url", + "name": "is_allowed_unlimited_notifications", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "is_android_only", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "is_developer_allow_listing", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "is_for_humans_only", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "is_reviewer_app_store_approved", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_message", + "name": "is_reviewer_world_app_approved", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "is_row_verified", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localisations", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_arr_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logo_img_url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_notifications_per_day", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "meta_tag_image_url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permit2_tokens", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_message", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "short_name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "should_uninstall_on_delist", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "showcase_img_urls", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23666,37 +24841,37 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "source_code_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "support_link", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "supported_countries", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23710,13 +24885,13 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "supported_languages", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23730,49 +24905,49 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verification_status", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verified_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "whitelisted_addresses", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -23786,599 +24961,574 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_button_text", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_description", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_metadata_min_order_by", - "description": "order by min() on columns of table \"app_metadata\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_metadata_max_fields", + "description": "aggregate max on columns", + "fields": [ { "name": "app_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "app_mode", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "app_website_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "associated_domains", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "category", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "changelog", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "content_card_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "contracts", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "description", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "hero_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "integration_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "logo_img_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "meta_tag_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "permit2_tokens", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "review_message", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "reviewed_by", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "short_name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "showcase_img_urls", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "source_code_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "support_link", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "supported_countries", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "supported_languages", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verification_status", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verified_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "whitelisted_addresses", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_button_text", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_description", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_metadata_mutation_response", - "description": "response of any mutation on the table \"app_metadata\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_metadata_max_order_by", + "description": "order by max() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "app_id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_metadata", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"app_metadata\"", - "fields": null, - "inputFields": [ - { - "name": "data", + "name": "app_mode", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "app_website_url", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_on_conflict", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_on_conflict", - "description": "on_conflict condition type for table \"app_metadata\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_constraint", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "update_columns", + "name": "associated_domains", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_metadata_update_column", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "category", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", - "description": "Ordering options when selecting data from \"app_metadata\".", - "fields": null, - "inputFields": [ + }, { - "name": "app", + "name": "changelog", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24386,7 +25536,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "content_card_image_url", "description": null, "type": { "kind": "ENUM", @@ -24398,7 +25548,7 @@ "deprecationReason": null }, { - "name": "app_mode", + "name": "contracts", "description": null, "type": { "kind": "ENUM", @@ -24410,7 +25560,7 @@ "deprecationReason": null }, { - "name": "app_rating", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -24422,7 +25572,7 @@ "deprecationReason": null }, { - "name": "app_website_url", + "name": "description", "description": null, "type": { "kind": "ENUM", @@ -24434,7 +25584,7 @@ "deprecationReason": null }, { - "name": "associated_domains", + "name": "hero_image_url", "description": null, "type": { "kind": "ENUM", @@ -24446,7 +25596,7 @@ "deprecationReason": null }, { - "name": "can_import_all_contacts", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -24458,7 +25608,7 @@ "deprecationReason": null }, { - "name": "can_use_attestation", + "name": "integration_url", "description": null, "type": { "kind": "ENUM", @@ -24470,7 +25620,7 @@ "deprecationReason": null }, { - "name": "category", + "name": "logo_img_url", "description": null, "type": { "kind": "ENUM", @@ -24482,7 +25632,7 @@ "deprecationReason": null }, { - "name": "changelog", + "name": "max_notifications_per_day", "description": null, "type": { "kind": "ENUM", @@ -24494,7 +25644,7 @@ "deprecationReason": null }, { - "name": "content_card_image_url", + "name": "meta_tag_image_url", "description": null, "type": { "kind": "ENUM", @@ -24506,7 +25656,7 @@ "deprecationReason": null }, { - "name": "contracts", + "name": "name", "description": null, "type": { "kind": "ENUM", @@ -24518,7 +25668,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "permit2_tokens", "description": null, "type": { "kind": "ENUM", @@ -24530,7 +25680,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "review_message", "description": null, "type": { "kind": "ENUM", @@ -24542,7 +25692,7 @@ "deprecationReason": null }, { - "name": "hero_image_url", + "name": "reviewed_by", "description": null, "type": { "kind": "ENUM", @@ -24554,7 +25704,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "short_name", "description": null, "type": { "kind": "ENUM", @@ -24566,7 +25716,7 @@ "deprecationReason": null }, { - "name": "integration_url", + "name": "showcase_img_urls", "description": null, "type": { "kind": "ENUM", @@ -24578,7 +25728,7 @@ "deprecationReason": null }, { - "name": "is_allowed_unlimited_notifications", + "name": "source_code_url", "description": null, "type": { "kind": "ENUM", @@ -24590,7 +25740,7 @@ "deprecationReason": null }, { - "name": "is_android_only", + "name": "support_link", "description": null, "type": { "kind": "ENUM", @@ -24602,7 +25752,7 @@ "deprecationReason": null }, { - "name": "is_developer_allow_listing", + "name": "supported_countries", "description": null, "type": { "kind": "ENUM", @@ -24614,7 +25764,7 @@ "deprecationReason": null }, { - "name": "is_for_humans_only", + "name": "supported_languages", "description": null, "type": { "kind": "ENUM", @@ -24626,7 +25776,7 @@ "deprecationReason": null }, { - "name": "is_reviewer_app_store_approved", + "name": "updated_at", "description": null, "type": { "kind": "ENUM", @@ -24638,7 +25788,7 @@ "deprecationReason": null }, { - "name": "is_reviewer_world_app_approved", + "name": "verification_status", "description": null, "type": { "kind": "ENUM", @@ -24650,7 +25800,7 @@ "deprecationReason": null }, { - "name": "is_row_verified", + "name": "verified_at", "description": null, "type": { "kind": "ENUM", @@ -24662,11 +25812,11 @@ "deprecationReason": null }, { - "name": "localisations_aggregate", + "name": "whitelisted_addresses", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -24674,7 +25824,7 @@ "deprecationReason": null }, { - "name": "logo_img_url", + "name": "world_app_button_text", "description": null, "type": { "kind": "ENUM", @@ -24686,7 +25836,7 @@ "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "world_app_description", "description": null, "type": { "kind": "ENUM", @@ -24696,672 +25846,487 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "meta_tag_image_url", + "name": "app_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "app_mode", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "permit2_tokens", - "description": null, + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_message", + "name": "app_website_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "associated_domains", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", + "name": "category", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "should_uninstall_on_delist", + "name": "changelog", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "content_card_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source_code_url", + "name": "contracts", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "support_link", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_countries", + "name": "description", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "supported_languages", + "name": "hero_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_status", + "name": "integration_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "logo_img_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "whitelisted_addresses", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", + "name": "meta_tag_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", + "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_pk_columns_input", - "description": "primary key columns input for table: app_metadata", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "permit2_tokens", "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_metadata_select_column", - "description": "select columns of table \"app_metadata\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_mode", - "description": "column name", + "name": "review_message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_website_url", - "description": "column name", + "name": "reviewed_by", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "associated_domains", - "description": "column name", + "name": "short_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "can_import_all_contacts", - "description": "column name", + "name": "showcase_img_urls", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "can_use_attestation", - "description": "column name", + "name": "source_code_url", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "category", - "description": "column name", + "name": "support_link", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "changelog", - "description": "column name", + "name": "supported_countries", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "content_card_image_url", - "description": "column name", + "name": "supported_languages", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contracts", - "description": "column name", + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": "column name", + "name": "verification_status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": "column name", + "name": "verified_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "integration_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_allowed_unlimited_notifications", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_android_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_developer_allow_listing", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_for_humans_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_app_store_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_world_app_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_row_verified", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logo_img_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_notifications_per_day", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "meta_tag_image_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permit2_tokens", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review_message", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewed_by", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "short_name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "should_uninstall_on_delist", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showcase_img_urls", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_code_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "support_link", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_countries", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_languages", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verification_status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verified_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelisted_addresses", - "description": "column name", + "name": "whitelisted_addresses", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_button_text", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_description", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"app_metadata_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"app_metadata\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "can_import_all_contacts", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "can_use_attestation", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_allowed_unlimited_notifications", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_android_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_developer_allow_listing", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_for_humans_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_app_store_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_world_app_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_row_verified", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "should_uninstall_on_delist", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"app_metadata_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"app_metadata\"", - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "can_import_all_contacts", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "can_use_attestation", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_allowed_unlimited_notifications", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_android_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_developer_allow_listing", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_for_humans_only", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_app_store_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_reviewer_world_app_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_row_verified", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "should_uninstall_on_delist", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_set_input", - "description": "input type for updating data in table \"app_metadata\"", + "name": "app_metadata_min_order_by", + "description": "order by min() on columns of table \"app_metadata\"", "fields": null, "inputFields": [ { "name": "app_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25372,8 +26337,8 @@ "name": "app_mode", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25384,8 +26349,8 @@ "name": "app_website_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25396,40 +26361,8 @@ "name": "associated_domains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "can_import_all_contacts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "can_use_attestation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25440,8 +26373,8 @@ "name": "category", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25452,8 +26385,8 @@ "name": "changelog", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25464,8 +26397,8 @@ "name": "content_card_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25476,17 +26409,9 @@ "name": "contracts", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -25496,8 +26421,8 @@ "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25508,8 +26433,8 @@ "name": "description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25520,8 +26445,8 @@ "name": "hero_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25532,8 +26457,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25544,8 +26469,8 @@ "name": "integration_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25553,11 +26478,11 @@ "deprecationReason": null }, { - "name": "is_allowed_unlimited_notifications", + "name": "logo_img_url", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25565,11 +26490,11 @@ "deprecationReason": null }, { - "name": "is_android_only", + "name": "max_notifications_per_day", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25577,11 +26502,11 @@ "deprecationReason": null }, { - "name": "is_developer_allow_listing", + "name": "meta_tag_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25589,11 +26514,11 @@ "deprecationReason": null }, { - "name": "is_for_humans_only", + "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25601,11 +26526,11 @@ "deprecationReason": null }, { - "name": "is_reviewer_app_store_approved", + "name": "permit2_tokens", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25613,11 +26538,11 @@ "deprecationReason": null }, { - "name": "is_reviewer_world_app_approved", + "name": "review_message", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25625,11 +26550,11 @@ "deprecationReason": null }, { - "name": "is_row_verified", + "name": "reviewed_by", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25637,11 +26562,11 @@ "deprecationReason": null }, { - "name": "logo_img_url", + "name": "short_name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25649,11 +26574,11 @@ "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "showcase_img_urls", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25661,11 +26586,11 @@ "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "source_code_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25673,11 +26598,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "support_link", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25685,31 +26610,23 @@ "deprecationReason": null }, { - "name": "permit2_tokens", + "name": "supported_countries", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_message", + "name": "supported_languages", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25717,11 +26634,11 @@ "deprecationReason": null }, { - "name": "reviewed_by", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25729,131 +26646,11 @@ "deprecationReason": null }, { - "name": "short_name", + "name": "verification_status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "should_uninstall_on_delist", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showcase_img_urls", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source_code_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "support_link", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_countries", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supported_languages", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verification_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25864,8 +26661,8 @@ "name": "verified_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25876,17 +26673,9 @@ "name": "whitelisted_addresses", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -25896,8 +26685,8 @@ "name": "world_app_button_text", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25908,8 +26697,8 @@ "name": "world_app_description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -25923,29 +26712,45 @@ }, { "kind": "OBJECT", - "name": "app_metadata_stddev_fields", - "description": "aggregate stddev on columns", + "name": "app_metadata_mutation_response", + "description": "response of any mutation on the table \"app_metadata\"", "fields": [ { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_metadata", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -25958,132 +26763,95 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_order_by", - "description": "order by stddev() on columns of table \"app_metadata\"", + "name": "app_metadata_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"app_metadata\"", "fields": null, "inputFields": [ { - "name": "max_notifications_per_day", + "name": "data", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "max_notifications_per_day", - "description": null, - "args": [], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "app_metadata_on_conflict", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"app_metadata\"", + "name": "app_metadata_on_conflict", + "description": "on_conflict condition type for table \"app_metadata\"", "fields": null, "inputFields": [ { - "name": "max_notifications_per_day", + "name": "constraint", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "max_notifications_per_day", + "name": "update_columns", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_metadata_update_column", + "ofType": null + } + } + } }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"app_metadata\"", - "fields": null, - "inputFields": [ + }, { - "name": "max_notifications_per_day", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -26097,55 +26865,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_stream_cursor_input", - "description": "Streaming cursor of the table \"app_metadata\"", + "name": "app_metadata_order_by", + "description": "Ordering options when selecting data from \"app_metadata\".", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "app", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stream_cursor_value_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "app_id", + "description": null, "type": { "kind": "ENUM", - "name": "cursor_ordering", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "app_id", + "name": "app_mode", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26153,11 +26906,11 @@ "deprecationReason": null }, { - "name": "app_mode", + "name": "app_rating", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26168,8 +26921,8 @@ "name": "app_website_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26180,17 +26933,9 @@ "name": "associated_domains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26200,8 +26945,8 @@ "name": "can_import_all_contacts", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26212,8 +26957,8 @@ "name": "can_use_attestation", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26224,8 +26969,8 @@ "name": "category", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26236,8 +26981,8 @@ "name": "changelog", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26248,8 +26993,8 @@ "name": "content_card_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26260,17 +27005,9 @@ "name": "contracts", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26280,8 +27017,8 @@ "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26292,8 +27029,8 @@ "name": "description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26304,8 +27041,8 @@ "name": "hero_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26316,8 +27053,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26328,8 +27065,8 @@ "name": "integration_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26340,8 +27077,8 @@ "name": "is_allowed_unlimited_notifications", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26352,8 +27089,8 @@ "name": "is_android_only", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26364,8 +27101,8 @@ "name": "is_developer_allow_listing", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26376,8 +27113,8 @@ "name": "is_for_humans_only", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26388,8 +27125,8 @@ "name": "is_reviewer_app_store_approved", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26400,8 +27137,8 @@ "name": "is_reviewer_world_app_approved", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26412,8 +27149,20 @@ "name": "is_row_verified", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localisations_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -26424,8 +27173,8 @@ "name": "logo_img_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26436,8 +27185,8 @@ "name": "max_notifications_per_day", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26448,8 +27197,8 @@ "name": "meta_tag_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26460,8 +27209,8 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26472,17 +27221,9 @@ "name": "permit2_tokens", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26492,8 +27233,8 @@ "name": "review_message", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26504,8 +27245,8 @@ "name": "reviewed_by", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26516,8 +27257,8 @@ "name": "short_name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26528,8 +27269,8 @@ "name": "should_uninstall_on_delist", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26540,17 +27281,9 @@ "name": "showcase_img_urls", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26560,8 +27293,8 @@ "name": "source_code_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26572,8 +27305,8 @@ "name": "support_link", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26584,17 +27317,9 @@ "name": "supported_countries", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26604,17 +27329,9 @@ "name": "supported_languages", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26624,8 +27341,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26636,8 +27353,8 @@ "name": "verification_status", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26648,8 +27365,8 @@ "name": "verified_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26660,17 +27377,9 @@ "name": "whitelisted_addresses", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -26680,8 +27389,8 @@ "name": "world_app_button_text", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26692,8 +27401,8 @@ "name": "world_app_description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -26705,54 +27414,23 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "app_metadata_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max_notifications_per_day", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_sum_order_by", - "description": "order by sum() on columns of table \"app_metadata\"", + "name": "app_metadata_pk_columns_input", + "description": "primary key columns input for table: app_metadata", "fields": null, "inputFields": [ { - "name": "max_notifications_per_day", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -26765,8 +27443,8 @@ }, { "kind": "ENUM", - "name": "app_metadata_update_column", - "description": "update columns of table \"app_metadata\"", + "name": "app_metadata_select_column", + "description": "select columns of table \"app_metadata\"", "fields": null, "inputFields": null, "interfaces": null, @@ -27027,421 +27705,355 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_metadata_updates", - "description": null, + "kind": "ENUM", + "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"app_metadata_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"app_metadata\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_inc_input", - "ofType": null - }, - "defaultValue": null, + "name": "can_import_all_contacts", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_set_input", - "ofType": null - }, - "defaultValue": null, + "name": "can_use_attestation", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - } - }, - "defaultValue": null, + "name": "is_allowed_unlimited_notifications", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, + "name": "is_android_only", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "is_developer_allow_listing", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_metadata_var_pop_order_by", - "description": "order by var_pop() on columns of table \"app_metadata\"", - "fields": null, - "inputFields": [ + }, { - "name": "max_notifications_per_day", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "is_for_humans_only", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, + "name": "is_reviewer_app_store_approved", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "is_reviewer_world_app_approved", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_row_verified", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "should_uninstall_on_delist", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_metadata_var_samp_order_by", - "description": "order by var_samp() on columns of table \"app_metadata\"", + "kind": "ENUM", + "name": "app_metadata_select_column_app_metadata_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"app_metadata_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"app_metadata\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "max_notifications_per_day", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "can_import_all_contacts", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_metadata_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "app_rating", - "description": "A computed field that returns the rating of an app", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, + "name": "can_use_attestation", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "max_notifications_per_day", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "is_allowed_unlimited_notifications", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_android_only", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_developer_allow_listing", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_for_humans_only", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_reviewer_app_store_approved", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_reviewer_world_app_approved", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_row_verified", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "should_uninstall_on_delist", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_metadata_variance_order_by", - "description": "order by variance() on columns of table \"app_metadata\"", + "name": "app_metadata_set_input", + "description": "input type for updating data in table \"app_metadata\"", "fields": null, "inputFields": [ { - "name": "max_notifications_per_day", + "name": "app_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "created_at", + "name": "app_mode", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "app_website_url", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_internal", + "name": "associated_domains", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", + "name": "can_import_all_contacts", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "first_verified_at", + "name": "can_use_attestation", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "category", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_url", + "name": "changelog", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "content_card_image_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_count", + "name": "contracts", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "description", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "hero_image_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "integration_url", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_min_order_by", - "description": "order by min() on columns of table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "is_allowed_unlimited_notifications", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27449,11 +28061,11 @@ "deprecationReason": null }, { - "name": "deleted_at", + "name": "is_android_only", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27461,11 +28073,11 @@ "deprecationReason": null }, { - "name": "description_internal", + "name": "is_developer_allow_listing", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27473,11 +28085,11 @@ "deprecationReason": null }, { - "name": "engine", + "name": "is_for_humans_only", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27485,11 +28097,11 @@ "deprecationReason": null }, { - "name": "first_verified_at", + "name": "is_reviewer_app_store_approved", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27497,11 +28109,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_reviewer_world_app_approved", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27509,11 +28121,11 @@ "deprecationReason": null }, { - "name": "logo_url", + "name": "is_row_verified", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -27521,11 +28133,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "logo_img_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27533,11 +28145,11 @@ "deprecationReason": null }, { - "name": "rating_count", + "name": "max_notifications_per_day", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -27545,11 +28157,11 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "meta_tag_image_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27557,11 +28169,11 @@ "deprecationReason": null }, { - "name": "status", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27569,11 +28181,31 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "permit2_tokens", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_message", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27581,11 +28213,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "reviewed_by", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27593,128 +28225,87 @@ "deprecationReason": null }, { - "name": "verified_at", + "name": "short_name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_mutation_response", - "description": "response of any mutation on the table \"app\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "should_uninstall_on_delist", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "showcase_img_urls", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "source_code_url", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_insert_input", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "support_link", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_on_conflict", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_on_conflict", - "description": "on_conflict condition type for table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "supported_countries", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_constraint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -27722,58 +28313,43 @@ "deprecationReason": null }, { - "name": "update_columns", + "name": "supported_languages", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_update_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_order_by", - "description": "Ordering options when selecting data from \"app\".", - "fields": null, - "inputFields": [ + }, { - "name": "actions_aggregate", + "name": "verification_status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "action_aggregate_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27781,11 +28357,11 @@ "deprecationReason": null }, { - "name": "app_metadata_aggregate", + "name": "verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_aggregate_order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -27793,23 +28369,31 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "whitelisted_addresses", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "world_app_button_text", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27817,43 +28401,65 @@ "deprecationReason": null }, { - "name": "description_internal", + "name": "world_app_description", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "dev_rewards_approved", - "description": null, + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_order_by", + "description": "order by stddev() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "first_verified_at", + "name": "max_notifications_per_day", "description": null, "type": { "kind": "ENUM", @@ -27863,33 +28469,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "has_airdrop_component", - "description": null, + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "is_archived", + "name": "max_notifications_per_day", "description": null, "type": { "kind": "ENUM", @@ -27899,33 +28527,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "is_banned", - "description": null, + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "numeric", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_staging", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "logo_url", + "name": "max_notifications_per_day", "description": null, "type": { "kind": "ENUM", @@ -27935,37 +28585,63 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stream_cursor_input", + "description": "Streaming cursor of the table \"app_metadata\"", + "fields": null, + "inputFields": [ { - "name": "name", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_count", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { "kind": "ENUM", - "name": "order_by", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "rating_sum", + "name": "app_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27973,11 +28649,11 @@ "deprecationReason": null }, { - "name": "rp_registration_aggregate", + "name": "app_mode", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_aggregate_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27985,11 +28661,11 @@ "deprecationReason": null }, { - "name": "status", + "name": "app_website_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27997,23 +28673,31 @@ "deprecationReason": null }, { - "name": "team", + "name": "associated_domains", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "can_import_all_contacts", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28021,11 +28705,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "can_use_attestation", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28033,106 +28717,44 @@ "deprecationReason": null }, { - "name": "verified_at", + "name": "category", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_pk_columns_input", - "description": "primary key columns input for table: app", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings", - "description": "columns and relationships of \"app_rankings\"", - "fields": [ - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "id", + "name": "changelog", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", + "name": "content_card_image_url", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", + "name": "contracts", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -28146,178 +28768,88 @@ } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings_aggregate", - "description": "aggregated selection of \"app_rankings\"", - "fields": [ + }, { - "name": "aggregate", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_rankings_aggregate_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "description", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_rankings", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings_aggregate_fields", - "description": "aggregate fields of \"app_rankings\"", - "fields": [ + }, { - "name": "count", + "name": "hero_image_url", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_rankings_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_rankings_max_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "integration_url", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_rankings_min_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_rankings\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", + "name": "is_allowed_unlimited_notifications", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "is_android_only", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28325,31 +28857,23 @@ "deprecationReason": null }, { - "name": "_or", + "name": "is_developer_allow_listing", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "country", + "name": "is_for_humans_only", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28357,11 +28881,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_reviewer_app_store_approved", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28369,11 +28893,11 @@ "deprecationReason": null }, { - "name": "platform", + "name": "is_reviewer_world_app_approved", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -28381,57 +28905,35 @@ "deprecationReason": null }, { - "name": "rankings", + "name": "is_row_verified", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_rankings_constraint", - "description": "unique or primary key constraints on table \"app_rankings\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_rankings_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "app_rankings_platform_country_unique", - "description": "unique or primary key constraint on columns \"platform\", \"country\"", + "name": "logo_img_url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_insert_input", - "description": "input type for inserting data into table \"app_rankings\"", - "fields": null, - "inputFields": [ + }, { - "name": "country", + "name": "max_notifications_per_day", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -28439,7 +28941,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "meta_tag_image_url", "description": null, "type": { "kind": "SCALAR", @@ -28451,7 +28953,7 @@ "deprecationReason": null }, { - "name": "platform", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -28463,7 +28965,7 @@ "deprecationReason": null }, { - "name": "rankings", + "name": "permit2_tokens", "description": null, "type": { "kind": "LIST", @@ -28481,57 +28983,58 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "country", + "name": "review_message", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "reviewed_by", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", + "name": "short_name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", + "name": "should_uninstall_on_delist", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showcase_img_urls", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -28545,60 +29048,37 @@ } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "source_code_url", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", + "name": "support_link", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", + "name": "supported_countries", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -28612,153 +29092,92 @@ } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_rankings_mutation_response", - "description": "response of any mutation on the table \"app_rankings\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "supported_languages", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_rankings", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_on_conflict", - "description": "on_conflict condition type for table \"app_rankings\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "updated_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_rankings_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "verification_status", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_rankings_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_order_by", - "description": "Ordering options when selecting data from \"app_rankings\".", - "fields": null, - "inputFields": [ + }, { - "name": "country", + "name": "whitelisted_addresses", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "world_app_button_text", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -28766,51 +29185,70 @@ "deprecationReason": null }, { - "name": "platform", + "name": "world_app_description", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "rankings", + "name": "max_notifications_per_day", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_rankings_pk_columns_input", - "description": "primary key columns input for table: app_rankings", + "name": "app_metadata_sum_order_by", + "description": "order by sum() on columns of table \"app_metadata\"", "fields": null, "inputFields": [ { - "name": "id", + "name": "max_notifications_per_day", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -28823,240 +29261,260 @@ }, { "kind": "ENUM", - "name": "app_rankings_select_column", - "description": "select columns of table \"app_rankings\"", + "name": "app_metadata_update_column", + "description": "update columns of table \"app_metadata\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "country", + "name": "app_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "app_mode", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", + "name": "app_website_url", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", + "name": "associated_domains", "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_set_input", - "description": "input type for updating data in table \"app_rankings\"", - "fields": null, - "inputFields": [ + }, { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "can_import_all_contacts", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "can_use_attestation", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "category", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "changelog", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_stream_cursor_input", - "description": "Streaming cursor of the table \"app_rankings\"", - "fields": null, - "inputFields": [ + }, { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, + "name": "content_card_image_url", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, + "name": "contracts", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_rankings_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hero_image_url", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "integration_url", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, + "name": "is_allowed_unlimited_notifications", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_rankings_update_column", - "description": "update columns of table \"app_rankings\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "country", + "name": "is_android_only", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "is_developer_allow_listing", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "platform", + "name": "is_for_humans_only", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rankings", + "name": "is_reviewer_app_store_approved", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_reviewer_world_app_approved", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_row_verified", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logo_img_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max_notifications_per_day", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "meta_tag_image_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permit2_tokens", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_message", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_by", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "short_name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "should_uninstall_on_delist", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showcase_img_urls", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source_code_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "support_link", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supported_countries", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supported_languages", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verification_status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelisted_addresses", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_app_button_text", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_app_description", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -29066,16 +29524,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_rankings_updates", + "name": "app_metadata_updates", "description": null, "fields": null, "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "app_rankings_set_input", + "name": "app_metadata_set_input", "ofType": null }, "defaultValue": null, @@ -29090,7 +29560,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "name": "app_metadata_bool_exp", "ofType": null } }, @@ -29105,99 +29575,209 @@ }, { "kind": "OBJECT", - "name": "app_report", - "description": "columns and relationships of \"app_report\"", + "name": "app_metadata_var_pop_fields", + "description": "aggregate var_pop on columns", "fields": [ { - "name": "app", - "description": "An object relationship", + "name": "app_rating", + "description": "A computed field that returns the rating of an app", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app", - "ofType": null - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "max_notifications_per_day", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_var_pop_order_by", + "description": "order by var_pop() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "max_notifications_per_day", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "details", + "name": "max_notifications_per_day", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_var_samp_order_by", + "description": "order by var_samp() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "max_notifications_per_day", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_metadata_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "app_rating", + "description": "A computed field that returns the rating of an app", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "max_notifications_per_day", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_metadata_variance_order_by", + "description": "order by variance() on columns of table \"app_metadata\"", + "fields": null, + "inputFields": [ + { + "name": "max_notifications_per_day", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_country_code", + "name": "deleted_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "description_internal", "description": null, "args": [], "type": { @@ -29209,7 +29789,7 @@ "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "engine", "description": null, "args": [], "type": { @@ -29221,39 +29801,31 @@ "deprecationReason": null }, { - "name": "illegal_content_sub_category", + "name": "first_verified_at", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamp", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "purpose", + "name": "id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reporter_email", + "name": "logo_url", "description": null, "args": [], "type": { @@ -29265,7 +29837,7 @@ "deprecationReason": null }, { - "name": "review_conclusion_reason", + "name": "name", "description": null, "args": [], "type": { @@ -29277,35 +29849,31 @@ "deprecationReason": null }, { - "name": "review_status", + "name": "rating_count", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "review_status_enum", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_at", + "name": "rating_sum", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "status", "description": null, "args": [], "type": { @@ -29317,7 +29885,7 @@ "deprecationReason": null }, { - "name": "user_pkid", + "name": "team_id", "description": null, "args": [], "type": { @@ -29329,12 +29897,24 @@ "deprecationReason": null }, { - "name": "violation", + "name": "updated_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, @@ -29347,247 +29927,208 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_report_aggregate", - "description": "aggregated selection of \"app_report\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_min_order_by", + "description": "order by min() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_report_aggregate_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "deleted_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_report_aggregate_fields", - "description": "aggregate fields of \"app_report\"", - "fields": [ + }, { - "name": "count", + "name": "description_internal", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_report_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "engine", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_report_max_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "first_verified_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_report_min_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_report_appeal", - "description": "columns and relationships of \"app_report_appeal\"", - "fields": [ + }, { - "name": "app_report", - "description": "An object relationship", - "args": [], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_report_id", + "name": "logo_url", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "appeal_comment", + "name": "name", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_report_appeal_aggregate", - "description": "aggregated selection of \"app_report_appeal\"", + "name": "app_mutation_response", + "description": "response of any mutation on the table \"app\"", "fields": [ { - "name": "aggregate", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "app_report_appeal_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", @@ -29600,7 +30141,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_report_appeal", + "name": "app", "ofType": null } } @@ -29616,109 +30157,60 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_report_appeal_aggregate_fields", - "description": "aggregate fields of \"app_report_appeal\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"app\"", + "fields": null, + "inputFields": [ { - "name": "count", + "name": "data", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_report_appeal_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "app_insert_input", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "app_report_appeal_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "app_report_appeal_min_fields", + "kind": "INPUT_OBJECT", + "name": "app_on_conflict", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_report_appeal\". All fields are combined with a logical 'AND'.", + "name": "app_on_conflict", + "description": "on_conflict condition type for table \"app\"", "fields": null, "inputFields": [ { - "name": "_and", + "name": "constraint", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "app_constraint", + "ofType": null } }, "defaultValue": null, @@ -29726,55 +30218,58 @@ "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", + "name": "update_columns", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_update_column", + "ofType": null + } } } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_report", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_order_by", + "description": "Ordering options when selecting data from \"app\".", + "fields": null, + "inputFields": [ { - "name": "app_report_id", + "name": "actions_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "action_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -29782,11 +30277,11 @@ "deprecationReason": null }, { - "name": "appeal_comment", + "name": "app_metadata_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "app_metadata_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -29797,8 +30292,8 @@ "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -29806,51 +30301,23 @@ "deprecationReason": null }, { - "name": "id", + "name": "deleted_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_report_appeal_constraint", - "description": "unique or primary key constraints on table \"app_report_appeal\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_report_appeal_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_insert_input", - "description": "input type for inserting data into table \"app_report_appeal\"", - "fields": null, - "inputFields": [ + }, { - "name": "app_report", + "name": "description_internal", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_obj_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -29858,11 +30325,11 @@ "deprecationReason": null }, { - "name": "app_report_id", + "name": "dev_rewards_approved", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -29870,11 +30337,11 @@ "deprecationReason": null }, { - "name": "appeal_comment", + "name": "engine", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -29882,11 +30349,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "first_verified_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -29894,266 +30361,131 @@ "deprecationReason": null }, { - "name": "id", + "name": "has_airdrop_component", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_report_appeal_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "app_report_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "appeal_comment", + "name": "id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "is_archived", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_report_appeal_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "app_report_id", + "name": "is_banned", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "appeal_comment", + "name": "is_staging", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "logo_url", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "name", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_report_appeal_mutation_response", - "description": "response of any mutation on the table \"app_report_appeal\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report_appeal", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_on_conflict", - "description": "on_conflict condition type for table \"app_report_appeal\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", + "name": "rating_count", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_report_appeal_constraint", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "rating_sum", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_report_appeal_update_column", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "rp_registration_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", + "name": "rp_registration_aggregate_order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_order_by", - "description": "Ordering options when selecting data from \"app_report_appeal\".", - "fields": null, - "inputFields": [ + }, { - "name": "app_report", + "name": "status", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -30161,11 +30493,11 @@ "deprecationReason": null }, { - "name": "app_report_id", + "name": "team", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "team_order_by", "ofType": null }, "defaultValue": null, @@ -30173,7 +30505,7 @@ "deprecationReason": null }, { - "name": "appeal_comment", + "name": "team_id", "description": null, "type": { "kind": "ENUM", @@ -30185,7 +30517,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "updated_at", "description": null, "type": { "kind": "ENUM", @@ -30197,7 +30529,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "verified_at", "description": null, "type": { "kind": "ENUM", @@ -30215,8 +30547,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_pk_columns_input", - "description": "primary key columns input for table: app_report_appeal", + "name": "app_pk_columns_input", + "description": "primary key columns input for table: app", "fields": null, "inputFields": [ { @@ -30241,275 +30573,219 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_report_appeal_select_column", - "description": "select columns of table \"app_report_appeal\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_report_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appeal_comment", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "app_rankings", + "description": "columns and relationships of \"app_rankings\"", + "fields": [ { - "name": "created_at", - "description": "column name", + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_set_input", - "description": "input type for updating data in table \"app_report_appeal\"", - "fields": null, - "inputFields": [ - { - "name": "app_report_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "appeal_comment", + "name": "platform", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "rankings", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_stream_cursor_input", - "description": "Streaming cursor of the table \"app_report_appeal\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_rankings_aggregate", + "description": "aggregated selection of \"app_rankings\"", + "fields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_stream_cursor_value_input", - "ofType": null - } + "kind": "OBJECT", + "name": "app_rankings_aggregate_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "nodes", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_rankings", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "app_report_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "app_rankings_aggregate_fields", + "description": "aggregate fields of \"app_rankings\"", + "fields": [ { - "name": "appeal_comment", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_rankings_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "max", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "OBJECT", + "name": "app_rankings_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "min", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_rankings_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_report_appeal_update_column", - "description": "update columns of table \"app_report_appeal\"", - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_report_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appeal_comment", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_report\". All fields are combined with a logical 'AND'.", + "name": "app_rankings_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_rankings\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -30523,7 +30799,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null } } @@ -30537,7 +30813,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null }, "defaultValue": null, @@ -30555,7 +30831,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null } } @@ -30565,11 +30841,11 @@ "deprecationReason": null }, { - "name": "app", + "name": "country", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -30577,7 +30853,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -30589,11 +30865,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "platform", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -30601,35 +30877,57 @@ "deprecationReason": null }, { - "name": "details", + "name": "rankings", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "String_array_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_rankings_constraint", + "description": "unique or primary key constraints on table \"app_rankings\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "app_rankings_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_country_code", + "name": "app_rankings_platform_country_unique", + "description": "unique or primary key constraint on columns \"platform\", \"country\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_insert_input", + "description": "input type for inserting data into table \"app_rankings\"", + "fields": null, + "inputFields": [ + { + "name": "country", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -30637,11 +30935,11 @@ "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -30649,11 +30947,11 @@ "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "platform", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -30661,183 +30959,290 @@ "deprecationReason": null }, { - "name": "illegal_content_sub_category", + "name": "rankings", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "illegal_content_sub_category_enum_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_rankings_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "purpose", + "name": "country", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "purpose_enum_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reporter_email", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_conclusion_reason", + "name": "platform", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_status", + "name": "rankings", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "review_status_enum_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_rankings_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "reviewed_at", + "name": "country", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_pkid", + "name": "platform", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "violation", + "name": "rankings", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "violation_enum_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_report_constraint", - "description": "unique or primary key constraints on table \"app_report\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "app_rankings_mutation_response", + "description": "response of any mutation on the table \"app_rankings\"", + "fields": [ { - "name": "app_report_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_rankings", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_report_insert_input", - "description": "input type for inserting data into table \"app_report\"", + "name": "app_rankings_on_conflict", + "description": "on_conflict condition type for table \"app_rankings\"", "fields": null, "inputFields": [ { - "name": "app", + "name": "constraint", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_obj_rel_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_rankings_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "update_columns", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_rankings_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "app_rankings_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_order_by", + "description": "Ordering options when selecting data from \"app_rankings\".", + "fields": null, + "inputFields": [ { - "name": "details", + "name": "country", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -30848,20 +31253,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_country_code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -30869,11 +31262,11 @@ "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "platform", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -30881,83 +31274,96 @@ "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "rankings", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_pk_columns_input", + "description": "primary key columns input for table: app_rankings", + "fields": null, + "inputFields": [ { - "name": "illegal_content_sub_category", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_rankings_select_column", + "description": "select columns of table \"app_rankings\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "purpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null - }, - "defaultValue": null, + "name": "country", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "reporter_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_conclusion_reason", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "platform", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "review_status_enum", - "ofType": null - }, - "defaultValue": null, + "name": "rankings", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_set_input", + "description": "input type for updating data in table \"app_rankings\"", + "fields": null, + "inputFields": [ { - "name": "reviewed_at", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -30965,7 +31371,7 @@ "deprecationReason": null }, { - "name": "reviewed_by", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -30977,7 +31383,7 @@ "deprecationReason": null }, { - "name": "user_pkid", + "name": "platform", "description": null, "type": { "kind": "SCALAR", @@ -30989,12 +31395,20 @@ "deprecationReason": null }, { - "name": "violation", + "name": "rankings", "description": null, "type": { - "kind": "SCALAR", - "name": "violation_enum", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -31006,221 +31420,218 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_report_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_rankings_stream_cursor_input", + "description": "Streaming cursor of the table \"app_rankings\"", + "fields": null, + "inputFields": [ { - "name": "app_id", - "description": null, - "args": [], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_stream_cursor_value_input", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "details", + "name": "country", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_country_code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_description", - "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "platform", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_sub_category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "purpose", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reporter_email", + "name": "rankings", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_rankings_update_column", + "description": "update columns of table \"app_rankings\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "review_conclusion_reason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "country", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "review_status_enum", - "ofType": null - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "name": "platform", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "rankings", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_rankings_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "user_pkid", - "description": null, - "args": [], + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_rankings_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "violation", - "description": null, - "args": [], + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "violation_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_bool_exp", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_report_min_fields", - "description": "aggregate min on columns", + "name": "app_report", + "description": "columns and relationships of \"app_report\"", "fields": [ + { + "name": "app", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "app_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31230,9 +31641,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31254,9 +31669,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31302,9 +31721,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31314,9 +31737,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31350,9 +31777,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "review_status_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "review_status_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -31413,28 +31844,24 @@ }, { "kind": "OBJECT", - "name": "app_report_mutation_response", - "description": "response of any mutation on the table \"app_report\"", + "name": "app_report_aggregate", + "description": "aggregated selection of \"app_report\"", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "aggregate", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "app_report_aggregate_fields", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "nodes", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -31463,69 +31890,201 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_report_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"app_report\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_report_aggregate_fields", + "description": "aggregate fields of \"app_report\"", + "fields": [ { - "name": "data", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_report_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_insert_input", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "max", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_on_conflict", + "kind": "OBJECT", + "name": "app_report_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_report_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_report_on_conflict", - "description": "on_conflict condition type for table \"app_report\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_report_appeal", + "description": "columns and relationships of \"app_report_appeal\"", + "fields": [ { - "name": "constraint", + "name": "app_report", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_report", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_report_id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_report_constraint", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "appeal_comment", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamp", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_report_appeal_aggregate", + "description": "aggregated selection of \"app_report_appeal\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_report_appeal_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -31536,58 +32095,138 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "app_report_update_column", + "kind": "OBJECT", + "name": "app_report_appeal", "ofType": null } } } }, - "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_report_appeal_aggregate_fields", + "description": "aggregate fields of \"app_report_appeal\"", + "fields": [ + { + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_report_appeal_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "max", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "kind": "OBJECT", + "name": "app_report_appeal_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_report_appeal_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_report_order_by", - "description": "Ordering options when selecting data from \"app_report\".", + "name": "app_report_appeal_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_report_appeal\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "app", + "name": "_and", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", "ofType": null }, "defaultValue": null, @@ -31595,23 +32234,31 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "_or", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "details", + "name": "app_report", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -31619,11 +32266,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "app_report_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -31631,11 +32278,11 @@ "deprecationReason": null }, { - "name": "illegal_content_country_code", + "name": "appeal_comment", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -31643,11 +32290,11 @@ "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "timestamp_comparison_exp", "ofType": null }, "defaultValue": null, @@ -31655,23 +32302,51 @@ "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_report_appeal_constraint", + "description": "unique or primary key constraints on table \"app_report_appeal\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "illegal_content_sub_category", + "name": "app_report_appeal_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_insert_input", + "description": "input type for inserting data into table \"app_report_appeal\"", + "fields": null, + "inputFields": [ + { + "name": "app_report", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_report_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -31679,11 +32354,11 @@ "deprecationReason": null }, { - "name": "purpose", + "name": "app_report_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -31691,11 +32366,11 @@ "deprecationReason": null }, { - "name": "reporter_email", + "name": "appeal_comment", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -31703,11 +32378,11 @@ "deprecationReason": null }, { - "name": "review_conclusion_reason", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -31715,252 +32390,266 @@ "deprecationReason": null }, { - "name": "review_status", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_report_appeal_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "reviewed_at", + "name": "app_report_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", + "name": "appeal_comment", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_pkid", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "violation", + "name": "id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_report_pk_columns_input", - "description": "primary key columns input for table: app_report", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_report_appeal_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "id", + "name": "app_report_id", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_report_select_column", - "description": "select columns of table \"app_report\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": "column name", + "name": "appeal_comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "details", - "description": "column name", + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamp", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_country_code", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_description", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_legal_reason", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "illegal_content_sub_category", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "purpose", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reporter_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review_conclusion_reason", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review_status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewed_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewed_by", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_report_appeal_mutation_response", + "description": "response of any mutation on the table \"app_report_appeal\"", + "fields": [ { - "name": "user_pkid", - "description": "column name", + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "violation", - "description": "column name", + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_report_appeal", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_report_set_input", - "description": "input type for updating data in table \"app_report\"", + "name": "app_report_appeal_on_conflict", + "description": "on_conflict condition type for table \"app_report_appeal\"", "fields": null, "inputFields": [ { - "name": "app_id", + "name": "constraint", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_report_appeal_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "update_columns", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_report_appeal_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "details", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_order_by", + "description": "Ordering options when selecting data from \"app_report_appeal\".", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "app_report", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_report_order_by", "ofType": null }, "defaultValue": null, @@ -31968,11 +32657,11 @@ "deprecationReason": null }, { - "name": "illegal_content_country_code", + "name": "app_report_id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -31980,11 +32669,11 @@ "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "appeal_comment", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -31992,11 +32681,11 @@ "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -32004,71 +32693,96 @@ "deprecationReason": null }, { - "name": "illegal_content_sub_category", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_pk_columns_input", + "description": "primary key columns input for table: app_report_appeal", + "fields": null, + "inputFields": [ { - "name": "purpose", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_report_appeal_select_column", + "description": "select columns of table \"app_report_appeal\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "reporter_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "app_report_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_conclusion_reason", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "appeal_comment", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "review_status_enum", - "ofType": null - }, - "defaultValue": null, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_at", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_set_input", + "description": "input type for updating data in table \"app_report_appeal\"", + "fields": null, + "inputFields": [ + { + "name": "app_report_id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -32076,7 +32790,7 @@ "deprecationReason": null }, { - "name": "reviewed_by", + "name": "appeal_comment", "description": null, "type": { "kind": "SCALAR", @@ -32088,11 +32802,11 @@ "deprecationReason": null }, { - "name": "user_pkid", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -32100,11 +32814,11 @@ "deprecationReason": null }, { - "name": "violation", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -32118,8 +32832,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_report_stream_cursor_input", - "description": "Streaming cursor of the table \"app_report\"", + "name": "app_report_appeal_stream_cursor_input", + "description": "Streaming cursor of the table \"app_report_appeal\"", "fields": null, "inputFields": [ { @@ -32130,7 +32844,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_stream_cursor_value_input", + "name": "app_report_appeal_stream_cursor_value_input", "ofType": null } }, @@ -32157,12 +32871,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_report_stream_cursor_value_input", + "name": "app_report_appeal_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "app_id", + "name": "app_report_id", "description": null, "type": { "kind": "SCALAR", @@ -32174,11 +32888,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "appeal_comment", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -32186,11 +32900,11 @@ "deprecationReason": null }, { - "name": "details", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -32208,13 +32922,59 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_report_appeal_update_column", + "description": "update columns of table \"app_report_appeal\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_report_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "illegal_content_country_code", - "description": null, + "name": "appeal_comment", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_set_input", "ofType": null }, "defaultValue": null, @@ -32222,23 +32982,58 @@ "deprecationReason": null }, { - "name": "illegal_content_description", + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_report\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_legal_reason", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -32246,11 +33041,31 @@ "deprecationReason": null }, { - "name": "illegal_content_sub_category", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -32258,11 +33073,11 @@ "deprecationReason": null }, { - "name": "purpose", + "name": "app_id", "description": null, "type": { - "kind": "SCALAR", - "name": "purpose_enum", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32270,11 +33085,11 @@ "deprecationReason": null }, { - "name": "reporter_email", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32282,11 +33097,11 @@ "deprecationReason": null }, { - "name": "review_conclusion_reason", + "name": "details", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32294,11 +33109,11 @@ "deprecationReason": null }, { - "name": "review_status", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "review_status_enum", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32306,11 +33121,11 @@ "deprecationReason": null }, { - "name": "reviewed_at", + "name": "illegal_content_country_code", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32318,11 +33133,11 @@ "deprecationReason": null }, { - "name": "reviewed_by", + "name": "illegal_content_description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32330,11 +33145,11 @@ "deprecationReason": null }, { - "name": "user_pkid", + "name": "illegal_content_legal_reason", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -32342,141 +33157,219 @@ "deprecationReason": null }, { - "name": "violation", + "name": "illegal_content_sub_category", "description": null, "type": { - "kind": "SCALAR", - "name": "violation_enum", + "kind": "INPUT_OBJECT", + "name": "illegal_content_sub_category_enum_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_report_update_column", - "description": "update columns of table \"app_report\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "created_at", - "description": "column name", + "name": "purpose", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "purpose_enum_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "details", - "description": "column name", + "name": "reporter_email", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "review_conclusion_reason", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_country_code", - "description": "column name", + "name": "review_status", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "review_status_enum_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_description", - "description": "column name", + "name": "reviewed_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_legal_reason", - "description": "column name", + "name": "reviewed_by", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "illegal_content_sub_category", - "description": "column name", + "name": "user_pkid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "purpose", - "description": "column name", + "name": "violation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "violation_enum_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_report_constraint", + "description": "unique or primary key constraints on table \"app_report\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "reporter_email", - "description": "column name", + "name": "app_report_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_insert_input", + "description": "input type for inserting data into table \"app_report\"", + "fields": null, + "inputFields": [ { - "name": "review_conclusion_reason", - "description": "column name", + "name": "app", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "review_status", - "description": "column name", + "name": "app_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_at", - "description": "column name", + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed_by", - "description": "column name", + "name": "details", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_pkid", - "description": "column name", + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "violation", - "description": "column name", + "name": "illegal_content_country_code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_report_updates", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "illegal_content_description", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_set_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -32484,694 +33377,364 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "illegal_content_legal_reason", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews", - "description": "columns and relationships of \"app_reviews\"", - "fields": [ + }, { - "name": "app_id", + "name": "illegal_content_sub_category", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "country", + "name": "purpose", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "reporter_email", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "review_conclusion_reason", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "review_status", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "review_status_enum", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating", + "name": "reviewed_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "reviewed_by", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_aggregate", - "description": "aggregated selection of \"app_reviews\"", - "fields": [ + }, { - "name": "aggregate", + "name": "user_pkid", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_aggregate_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "violation", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_reviews", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "violation_enum", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_reviews_aggregate_fields", - "description": "aggregate fields of \"app_reviews\"", + "name": "app_report_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "avg", + "name": "app_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_avg_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "created_at", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_reviews_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "details", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_max_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_min_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "illegal_content_country_code", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_stddev_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "illegal_content_description", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_stddev_pop_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "illegal_content_legal_reason", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_stddev_samp_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "illegal_content_sub_category", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_sum_fields", + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "purpose", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_var_pop_fields", + "kind": "SCALAR", + "name": "purpose_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "reporter_email", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_var_samp_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "review_conclusion_reason", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "app_reviews_variance_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_avg_fields", - "description": "aggregate avg on columns", - "fields": [ + }, { - "name": "rating", + "name": "review_status", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "review_status_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_reviews\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "country", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "reviewed_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating", + "name": "reviewed_by", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "user_pkid", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_reviews_constraint", - "description": "unique or primary key constraints on table \"app_reviews\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_reviews_nullifier_hash_key", - "description": "unique or primary key constraint on columns \"nullifier_hash\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_reviews_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_reviews_inc_input", - "description": "input type for incrementing numeric columns in table \"app_reviews\"", - "fields": null, - "inputFields": [ - { - "name": "rating", + "name": "violation", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "violation_enum", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_reviews_insert_input", - "description": "input type for inserting data into table \"app_reviews\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_report_min_fields", + "description": "aggregate min on columns", + "fields": [ { "name": "app_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "app_id", + "name": "details", "description": null, "args": [], "type": { @@ -33183,7 +33746,7 @@ "deprecationReason": null }, { - "name": "country", + "name": "id", "description": null, "args": [], "type": { @@ -33195,19 +33758,19 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "illegal_content_country_code", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "illegal_content_description", "description": null, "args": [], "type": { @@ -33219,7 +33782,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "illegal_content_legal_reason", "description": null, "args": [], "type": { @@ -33231,42 +33794,31 @@ "deprecationReason": null }, { - "name": "rating", + "name": "illegal_content_sub_category", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "illegal_content_sub_category_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "purpose", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "purpose_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "app_id", + "name": "reporter_email", "description": null, "args": [], "type": { @@ -33278,7 +33830,7 @@ "deprecationReason": null }, { - "name": "country", + "name": "review_conclusion_reason", "description": null, "args": [], "type": { @@ -33290,31 +33842,31 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "review_status", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "review_status_enum", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "reviewed_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "reviewed_by", "description": null, "args": [], "type": { @@ -33326,24 +33878,24 @@ "deprecationReason": null }, { - "name": "rating", + "name": "user_pkid", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "violation", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "violation_enum", "ofType": null }, "isDeprecated": false, @@ -33357,8 +33909,8 @@ }, { "kind": "OBJECT", - "name": "app_reviews_mutation_response", - "description": "response of any mutation on the table \"app_reviews\"", + "name": "app_report_mutation_response", + "description": "response of any mutation on the table \"app_report\"", "fields": [ { "name": "affected_rows", @@ -33391,7 +33943,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_reviews", + "name": "app_report", "ofType": null } } @@ -33408,8 +33960,47 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_on_conflict", - "description": "on_conflict condition type for table \"app_reviews\"", + "name": "app_report_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"app_report\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_insert_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_report_on_conflict", + "description": "on_conflict condition type for table \"app_report\"", "fields": null, "inputFields": [ { @@ -33420,7 +34011,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_reviews_constraint", + "name": "app_report_constraint", "ofType": null } }, @@ -33442,7 +34033,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_reviews_update_column", + "name": "app_report_update_column", "ofType": null } } @@ -33457,7 +34048,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -33471,10 +34062,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_order_by", - "description": "Ordering options when selecting data from \"app_reviews\".", + "name": "app_report_order_by", + "description": "Ordering options when selecting data from \"app_report\".", "fields": null, "inputFields": [ + { + "name": "app", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "app_id", "description": null, @@ -33488,7 +34091,7 @@ "deprecationReason": null }, { - "name": "country", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -33500,7 +34103,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "details", "description": null, "type": { "kind": "ENUM", @@ -33524,7 +34127,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "illegal_content_country_code", "description": null, "type": { "kind": "ENUM", @@ -33536,7 +34139,7 @@ "deprecationReason": null }, { - "name": "rating", + "name": "illegal_content_description", "description": null, "type": { "kind": "ENUM", @@ -33548,7 +34151,115 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "illegal_content_legal_reason", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "illegal_content_sub_category", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "purpose", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reporter_email", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_conclusion_reason", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_status", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_by", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_pkid", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "violation", "description": null, "type": { "kind": "ENUM", @@ -33566,8 +34277,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_pk_columns_input", - "description": "primary key columns input for table: app_reviews", + "name": "app_report_pk_columns_input", + "description": "primary key columns input for table: app_report", "fields": null, "inputFields": [ { @@ -33593,8 +34304,8 @@ }, { "kind": "ENUM", - "name": "app_reviews_select_column", - "description": "select columns of table \"app_reviews\"", + "name": "app_report_select_column", + "description": "select columns of table \"app_report\"", "fields": null, "inputFields": null, "interfaces": null, @@ -33606,13 +34317,13 @@ "deprecationReason": null }, { - "name": "country", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "details", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -33624,19 +34335,73 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "illegal_content_country_code", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating", + "name": "illegal_content_description", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "illegal_content_legal_reason", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "illegal_content_sub_category", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "purpose", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reporter_email", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_conclusion_reason", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_by", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_pkid", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "violation", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -33646,8 +34411,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_set_input", - "description": "input type for updating data in table \"app_reviews\"", + "name": "app_report_set_input", + "description": "input type for updating data in table \"app_report\"", "fields": null, "inputFields": [ { @@ -33663,11 +34428,11 @@ "deprecationReason": null }, { - "name": "country", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -33675,11 +34440,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "details", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -33699,7 +34464,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "illegal_content_country_code", "description": null, "type": { "kind": "SCALAR", @@ -33711,11 +34476,11 @@ "deprecationReason": null }, { - "name": "rating", + "name": "illegal_content_description", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -33723,7 +34488,79 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "illegal_content_legal_reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "illegal_content_sub_category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "purpose", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reporter_email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_conclusion_reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review_status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "review_status_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed_at", "description": null, "type": { "kind": "SCALAR", @@ -33733,85 +34570,52 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ + }, { - "name": "rating", + "name": "reviewed_by", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { - "name": "rating", + "name": "user_pkid", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { - "name": "rating", + "name": "violation", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "violation_enum", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_stream_cursor_input", - "description": "Streaming cursor of the table \"app_reviews\"", + "name": "app_report_stream_cursor_input", + "description": "Streaming cursor of the table \"app_report\"", "fields": null, "inputFields": [ { @@ -33822,7 +34626,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_stream_cursor_value_input", + "name": "app_report_stream_cursor_value_input", "ofType": null } }, @@ -33849,7 +34653,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_reviews_stream_cursor_value_input", + "name": "app_report_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ @@ -33866,11 +34670,11 @@ "deprecationReason": null }, { - "name": "country", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -33878,11 +34682,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "details", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -33902,7 +34706,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "illegal_content_country_code", "description": null, "type": { "kind": "SCALAR", @@ -33914,11 +34718,11 @@ "deprecationReason": null }, { - "name": "rating", + "name": "illegal_content_description", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -33926,110 +34730,59 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "illegal_content_legal_reason", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + }, { - "name": "rating", + "name": "illegal_content_sub_category", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "illegal_content_sub_category_enum", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_reviews_update_column", - "description": "update columns of table \"app_reviews\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "country", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": "column name", + "name": "purpose", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating", - "description": "column name", + "name": "reporter_email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_reviews_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "review_conclusion_reason", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_inc_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -34037,11 +34790,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "review_status", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_set_input", + "kind": "SCALAR", + "name": "review_status_enum", "ofType": null }, "defaultValue": null, @@ -34049,213 +34802,158 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "reviewed_at", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "rating", + "name": "reviewed_by", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "rating", + "name": "user_pkid", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_reviews_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "rating", + "name": "violation", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "violation_enum", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "app_select_column", - "description": "select columns of table \"app\"", + "name": "app_report_update_column", + "description": "update columns of table \"app_report\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_internal", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dev_rewards_approved", + "name": "app_id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "first_verified_at", + "name": "details", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "has_airdrop_component", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "illegal_content_country_code", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_archived", + "name": "illegal_content_description", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_banned", + "name": "illegal_content_legal_reason", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_staging", + "name": "illegal_content_sub_category", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "logo_url", + "name": "purpose", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "reporter_email", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_count", + "name": "review_conclusion_reason", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "review_status", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "reviewed_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "reviewed_by", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "user_pkid", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "violation", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -34264,341 +34962,91 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_select_column_app_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"app_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"app\"", + "kind": "INPUT_OBJECT", + "name": "app_report_updates", + "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "dev_rewards_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "has_airdrop_component", - "description": "column name", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_set_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_archived", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_banned", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_staging", - "description": "column name", + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "app_select_column_app_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"app_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"app\"", - "fields": null, - "inputFields": null, "interfaces": null, - "enumValues": [ - { - "name": "dev_rewards_approved", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "has_airdrop_component", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_archived", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_banned", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_staging", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_set_input", - "description": "input type for updating data in table \"app\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_internal", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dev_rewards_approved", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "engine", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first_verified_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "has_airdrop_component", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_archived", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_banned", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_staging", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logo_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_count", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_sum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "app_reviews", + "description": "columns and relationships of \"app_reviews\"", + "fields": [ { - "name": "team_id", + "name": "app_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "country", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verified_at", + "name": "created_at", "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_stats", - "description": "columns and relationships of \"app_stats\"", - "fields": [ - { - "name": "app", - "description": "An object relationship", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "app", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null } }, @@ -34606,7 +35054,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "id", "description": null, "args": [], "type": { @@ -34622,7 +35070,7 @@ "deprecationReason": null }, { - "name": "date", + "name": "nullifier_hash", "description": null, "args": [], "type": { @@ -34630,7 +35078,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null } }, @@ -34638,7 +35086,7 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "rating", "description": null, "args": [], "type": { @@ -34646,7 +35094,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null } }, @@ -34654,7 +35102,7 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "updated_at", "description": null, "args": [], "type": { @@ -34662,7 +35110,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null } }, @@ -34677,8 +35125,8 @@ }, { "kind": "OBJECT", - "name": "app_stats_aggregate", - "description": "aggregated selection of \"app_stats\"", + "name": "app_reviews_aggregate", + "description": "aggregated selection of \"app_reviews\"", "fields": [ { "name": "aggregate", @@ -34686,7 +35134,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_aggregate_fields", + "name": "app_reviews_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -34707,7 +35155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_stats", + "name": "app_reviews", "ofType": null } } @@ -34724,8 +35172,8 @@ }, { "kind": "OBJECT", - "name": "app_stats_aggregate_fields", - "description": "aggregate fields of \"app_stats\"", + "name": "app_reviews_aggregate_fields", + "description": "aggregate fields of \"app_reviews\"", "fields": [ { "name": "avg", @@ -34733,7 +35181,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_avg_fields", + "name": "app_reviews_avg_fields", "ofType": null }, "isDeprecated": false, @@ -34754,7 +35202,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_stats_select_column", + "name": "app_reviews_select_column", "ofType": null } } @@ -34794,7 +35242,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_max_fields", + "name": "app_reviews_max_fields", "ofType": null }, "isDeprecated": false, @@ -34806,7 +35254,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_min_fields", + "name": "app_reviews_min_fields", "ofType": null }, "isDeprecated": false, @@ -34818,7 +35266,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_stddev_fields", + "name": "app_reviews_stddev_fields", "ofType": null }, "isDeprecated": false, @@ -34830,7 +35278,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_stddev_pop_fields", + "name": "app_reviews_stddev_pop_fields", "ofType": null }, "isDeprecated": false, @@ -34842,7 +35290,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_stddev_samp_fields", + "name": "app_reviews_stddev_samp_fields", "ofType": null }, "isDeprecated": false, @@ -34854,7 +35302,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_sum_fields", + "name": "app_reviews_sum_fields", "ofType": null }, "isDeprecated": false, @@ -34866,7 +35314,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_var_pop_fields", + "name": "app_reviews_var_pop_fields", "ofType": null }, "isDeprecated": false, @@ -34878,7 +35326,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_var_samp_fields", + "name": "app_reviews_var_samp_fields", "ofType": null }, "isDeprecated": false, @@ -34890,7 +35338,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "app_stats_variance_fields", + "name": "app_reviews_variance_fields", "ofType": null }, "isDeprecated": false, @@ -34904,23 +35352,11 @@ }, { "kind": "OBJECT", - "name": "app_stats_avg_fields", + "name": "app_reviews_avg_fields", "description": "aggregate avg on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -34939,8 +35375,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", - "description": "Boolean expression to filter rows from the table \"app_stats\". All fields are combined with a logical 'AND'.", + "name": "app_reviews_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_reviews\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -34954,7 +35390,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null } } @@ -34968,7 +35404,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null }, "defaultValue": null, @@ -34986,7 +35422,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null } } @@ -34996,11 +35432,11 @@ "deprecationReason": null }, { - "name": "app", + "name": "app_id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -35008,7 +35444,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "country", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -35020,11 +35456,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -35032,11 +35468,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -35044,11 +35480,35 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "nullifier_hash", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -35062,15 +35522,21 @@ }, { "kind": "ENUM", - "name": "app_stats_constraint", - "description": "unique or primary key constraints on table \"app_stats\"", + "name": "app_reviews_constraint", + "description": "unique or primary key constraints on table \"app_reviews\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "app_stats_pkey", - "description": "unique or primary key constraint on columns \"date\", \"app_id\"", + "name": "app_reviews_nullifier_hash_key", + "description": "unique or primary key constraint on columns \"nullifier_hash\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_reviews_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -35079,28 +35545,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_inc_input", - "description": "input type for incrementing numeric columns in table \"app_stats\"", + "name": "app_reviews_inc_input", + "description": "input type for incrementing numeric columns in table \"app_reviews\"", "fields": null, "inputFields": [ { - "name": "unique_users", - "description": null, - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35114,16 +35568,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_insert_input", - "description": "input type for inserting data into table \"app_stats\"", + "name": "app_reviews_insert_input", + "description": "input type for inserting data into table \"app_reviews\"", "fields": null, "inputFields": [ { - "name": "app", + "name": "app_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_obj_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -35131,7 +35585,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "country", "description": null, "type": { "kind": "SCALAR", @@ -35143,11 +35597,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -35155,11 +35609,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, @@ -35167,11 +35621,35 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "nullifier_hash", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -35185,7 +35663,7 @@ }, { "kind": "OBJECT", - "name": "app_stats_max_fields", + "name": "app_reviews_max_fields", "description": "aggregate max on columns", "fields": [ { @@ -35201,36 +35679,72 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, @@ -35244,7 +35758,7 @@ }, { "kind": "OBJECT", - "name": "app_stats_min_fields", + "name": "app_reviews_min_fields", "description": "aggregate min on columns", "fields": [ { @@ -35260,36 +35774,72 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, @@ -35303,8 +35853,8 @@ }, { "kind": "OBJECT", - "name": "app_stats_mutation_response", - "description": "response of any mutation on the table \"app_stats\"", + "name": "app_reviews_mutation_response", + "description": "response of any mutation on the table \"app_reviews\"", "fields": [ { "name": "affected_rows", @@ -35337,7 +35887,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_stats", + "name": "app_reviews", "ofType": null } } @@ -35354,8 +35904,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_on_conflict", - "description": "on_conflict condition type for table \"app_stats\"", + "name": "app_reviews_on_conflict", + "description": "on_conflict condition type for table \"app_reviews\"", "fields": null, "inputFields": [ { @@ -35366,7 +35916,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_stats_constraint", + "name": "app_reviews_constraint", "ofType": null } }, @@ -35388,7 +35938,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_stats_update_column", + "name": "app_reviews_update_column", "ofType": null } } @@ -35403,7 +35953,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null }, "defaultValue": null, @@ -35417,16 +35967,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_order_by", - "description": "Ordering options when selecting data from \"app_stats\".", + "name": "app_reviews_order_by", + "description": "Ordering options when selecting data from \"app_reviews\".", "fields": null, "inputFields": [ { - "name": "app", + "name": "app_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -35434,7 +35984,7 @@ "deprecationReason": null }, { - "name": "app_id", + "name": "country", "description": null, "type": { "kind": "ENUM", @@ -35446,7 +35996,7 @@ "deprecationReason": null }, { - "name": "date", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -35458,7 +36008,7 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -35470,7 +36020,31 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", "description": null, "type": { "kind": "ENUM", @@ -35488,12 +36062,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_pk_columns_input", - "description": "primary key columns input for table: app_stats", + "name": "app_reviews_pk_columns_input", + "description": "primary key columns input for table: app_reviews", "fields": null, "inputFields": [ { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -35507,22 +36081,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -35531,8 +36089,8 @@ }, { "kind": "ENUM", - "name": "app_stats_select_column", - "description": "select columns of table \"app_stats\"", + "name": "app_reviews_select_column", + "description": "select columns of table \"app_reviews\"", "fields": null, "inputFields": null, "interfaces": null, @@ -35544,19 +36102,37 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -35566,8 +36142,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_set_input", - "description": "input type for updating data in table \"app_stats\"", + "name": "app_reviews_set_input", + "description": "input type for updating data in table \"app_reviews\"", "fields": null, "inputFields": [ { @@ -35583,11 +36159,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "defaultValue": null, @@ -35595,11 +36171,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -35607,64 +36183,65 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_stats_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ + }, { - "name": "unique_users", + "name": "nullifier_hash", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "rating", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_stats_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", + "name": "app_reviews_stddev_fields", + "description": "aggregate stddev on columns", "fields": [ { - "name": "unique_users", + "name": "rating", "description": null, "args": [], "type": { @@ -35674,9 +36251,20 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_reviews_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -35695,23 +36283,11 @@ }, { "kind": "OBJECT", - "name": "app_stats_stddev_samp_fields", + "name": "app_reviews_stddev_samp_fields", "description": "aggregate stddev_samp on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -35730,8 +36306,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_stream_cursor_input", - "description": "Streaming cursor of the table \"app_stats\"", + "name": "app_reviews_stream_cursor_input", + "description": "Streaming cursor of the table \"app_reviews\"", "fields": null, "inputFields": [ { @@ -35742,7 +36318,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_stream_cursor_value_input", + "name": "app_reviews_stream_cursor_value_input", "ofType": null } }, @@ -35769,7 +36345,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_stream_cursor_value_input", + "name": "app_reviews_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ @@ -35786,11 +36362,11 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "defaultValue": null, @@ -35798,11 +36374,11 @@ "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -35810,11 +36386,47 @@ "deprecationReason": null }, { - "name": "verifications", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -35828,28 +36440,16 @@ }, { "kind": "OBJECT", - "name": "app_stats_sum_fields", + "name": "app_reviews_sum_fields", "description": "aggregate sum on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -35863,8 +36463,8 @@ }, { "kind": "ENUM", - "name": "app_stats_update_column", - "description": "update columns of table \"app_stats\"", + "name": "app_reviews_update_column", + "description": "update columns of table \"app_reviews\"", "fields": null, "inputFields": null, "interfaces": null, @@ -35876,19 +36476,37 @@ "deprecationReason": null }, { - "name": "date", + "name": "country", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_users", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "verifications", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -35898,7 +36516,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_stats_updates", + "name": "app_reviews_updates", "description": null, "fields": null, "inputFields": [ @@ -35907,7 +36525,7 @@ "description": "increments the numeric columns with given value of the filtered values", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_inc_input", + "name": "app_reviews_inc_input", "ofType": null }, "defaultValue": null, @@ -35919,7 +36537,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_set_input", + "name": "app_reviews_set_input", "ofType": null }, "defaultValue": null, @@ -35934,7 +36552,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null } }, @@ -35949,23 +36567,11 @@ }, { "kind": "OBJECT", - "name": "app_stats_var_pop_fields", + "name": "app_reviews_var_pop_fields", "description": "aggregate var_pop on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -35984,23 +36590,11 @@ }, { "kind": "OBJECT", - "name": "app_stats_var_samp_fields", + "name": "app_reviews_var_samp_fields", "description": "aggregate var_samp on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -36019,23 +36613,11 @@ }, { "kind": "OBJECT", - "name": "app_stats_variance_fields", + "name": "app_reviews_variance_fields", "description": "aggregate variance on columns", "fields": [ { - "name": "unique_users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifications", + "name": "rating", "description": null, "args": [], "type": { @@ -36053,258 +36635,216 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ + "kind": "ENUM", + "name": "app_select_column", + "description": "select columns of table \"app\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "rating_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "deleted_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_stddev_order_by", - "description": "order by stddev() on columns of table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "rating_count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "description_internal", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "dev_rewards_approved", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { - "name": "rating_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "engine", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "name": "first_verified_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "rating_count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "has_airdrop_component", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ + }, + { + "name": "is_archived", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_banned", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_staging", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logo_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "rating_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "rating_sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"app\"", + "kind": "ENUM", + "name": "app_select_column_app_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"app_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"app\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "rating_count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "dev_rewards_approved", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "name": "has_airdrop_component", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_archived", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_banned", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_staging", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_stream_cursor_input", - "description": "Streaming cursor of the table \"app\"", + "kind": "ENUM", + "name": "app_select_column_app_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"app_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"app\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, + "name": "dev_rewards_approved", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, + "name": "has_airdrop_component", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_archived", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_banned", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_staging", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "app_set_input", + "description": "input type for updating data in table \"app\"", "fields": null, "inputFields": [ { @@ -36542,29 +37082,85 @@ }, { "kind": "OBJECT", - "name": "app_sum_fields", - "description": "aggregate sum on columns", + "name": "app_stats", + "description": "columns and relationships of \"app_stats\"", "fields": [ { - "name": "rating_count", + "name": "app", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "date", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_users", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifications", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -36576,223 +37172,239 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "app_sum_order_by", - "description": "order by sum() on columns of table \"app\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_stats_aggregate", + "description": "aggregated selection of \"app_stats\"", + "fields": [ { - "name": "rating_count", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "app_stats_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_stats", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "app_update_column", - "description": "update columns of table \"app\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "app_stats_aggregate_fields", + "description": "aggregate fields of \"app_stats\"", + "fields": [ { - "name": "created_at", - "description": "column name", + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_avg_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", - "description": "column name", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_stats_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_internal", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dev_rewards_approved", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "engine", - "description": "column name", + "name": "stddev", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_stddev_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "first_verified_at", - "description": "column name", + "name": "stddev_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_stddev_pop_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "has_airdrop_component", - "description": "column name", + "name": "stddev_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_stddev_samp_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "sum", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "app_stats_sum_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_archived", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_banned", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_staging", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logo_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_count", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rating_sum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verified_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "var_pop", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_inc_input", + "kind": "OBJECT", + "name": "app_stats_var_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "var_samp", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_set_input", + "kind": "OBJECT", + "name": "app_stats_var_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "variance", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "app_stats_variance_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "app_var_pop_fields", - "description": "aggregate var_pop on columns", + "name": "app_stats_avg_fields", + "description": "aggregate avg on columns", "fields": [ { - "name": "rating_count", + "name": "unique_users", "description": null, "args": [], "type": { @@ -36804,7 +37416,7 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "verifications", "description": null, "args": [], "type": { @@ -36823,16 +37435,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "app_var_pop_order_by", - "description": "order by var_pop() on columns of table \"app\"", + "name": "app_stats_bool_exp", + "description": "Boolean expression to filter rows from the table \"app_stats\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "rating_count", + "name": "_and", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", "ofType": null }, "defaultValue": null, @@ -36840,69 +37472,67 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "_or", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "app_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "rating_count", + "name": "app_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "date", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "app_var_samp_order_by", - "description": "order by var_samp() on columns of table \"app\"", - "fields": null, - "inputFields": [ + }, { - "name": "rating_count", + "name": "unique_users", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -36910,11 +37540,11 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "verifications", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -36927,52 +37557,69 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "app_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + "kind": "ENUM", + "name": "app_stats_constraint", + "description": "unique or primary key constraints on table \"app_stats\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "rating_count", + "name": "app_stats_pkey", + "description": "unique or primary key constraint on columns \"date\", \"app_id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stats_inc_input", + "description": "input type for incrementing numeric columns in table \"app_stats\"", + "fields": null, + "inputFields": [ + { + "name": "unique_users", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "rating_sum", + "name": "verifications", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "bigint", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "app_variance_order_by", - "description": "order by variance() on columns of table \"app\"", + "name": "app_stats_insert_input", + "description": "input type for inserting data into table \"app_stats\"", "fields": null, "inputFields": [ { - "name": "rating_count", + "name": "app", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -36980,73 +37627,65 @@ "deprecationReason": null }, { - "name": "rating_sum", + "name": "app_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_code", - "description": "columns and relationships of \"auth_code\"", - "fields": [ + }, { - "name": "app_id", + "name": "date", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_code", + "name": "unique_users", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge", + "name": "verifications", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "code_challenge_method", + "name": "app_id", "description": null, "args": [], "type": { @@ -37058,55 +37697,54 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "date", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "unique_users", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "verifications", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "nonce", + "name": "app_id", "description": null, "args": [], "type": { @@ -37118,72 +37756,62 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "date", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "date", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_uri", + "name": "unique_users", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "bigint", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scope", + "name": "verifications", "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "bigint", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_mutation_response", + "description": "response of any mutation on the table \"app_stats\"", + "fields": [ { - "name": "updated_at", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Int", "ofType": null } }, @@ -37191,16 +37819,24 @@ "deprecationReason": null }, { - "name": "verification_level", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_stats", + "ofType": null + } + } } }, "isDeprecated": false, @@ -37213,26 +37849,30 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "auth_code_aggregate", - "description": "aggregated selection of \"auth_code\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "app_stats_on_conflict", + "description": "on_conflict condition type for table \"app_stats\"", + "fields": null, + "inputFields": [ { - "name": "aggregate", + "name": "constraint", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "auth_code_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_stats_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "update_columns", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -37243,161 +37883,70 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "auth_code", + "kind": "ENUM", + "name": "app_stats_update_column", "ofType": null } } } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_code_aggregate_fields", - "description": "aggregate fields of \"auth_code\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_code_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_code_max_fields", - "ofType": null - }, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "where", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "auth_code_min_fields", + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "auth_code_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "app_stats_order_by", + "description": "Ordering options when selecting data from \"app_stats\".", "fields": null, "inputFields": [ { - "name": "scope", + "name": "app", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "app_order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth_code\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", + "name": "app_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -37405,91 +37954,124 @@ "deprecationReason": null }, { - "name": "_or", + "name": "unique_users", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_id", + "name": "verifications", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stats_pk_columns_input", + "description": "primary key columns input for table: app_stats", + "fields": null, + "inputFields": [ { - "name": "auth_code", + "name": "app_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_stats_select_column", + "description": "select columns of table \"app_stats\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "code_challenge_method", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "date", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "name": "unique_users", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "verifications", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stats_set_input", + "description": "input type for updating data in table \"app_stats\"", + "fields": null, + "inputFields": [ + { + "name": "app_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -37497,11 +38079,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -37509,11 +38091,11 @@ "deprecationReason": null }, { - "name": "nonce", + "name": "unique_users", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -37521,153 +38103,155 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "verifications", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "redirect_uri", + "name": "unique_users", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scope", + "name": "verifications", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "updated_at", + "name": "unique_users", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_level", + "name": "verifications", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "auth_code_constraint", - "description": "unique or primary key constraints on table \"auth_code\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "app_stats_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "auth_code_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "unique_users", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ + }, { - "name": "scope", + "name": "verifications", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "app_stats_stream_cursor_input", + "description": "Streaming cursor of the table \"app_stats\"", "fields": null, "inputFields": [ { - "name": "scope", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ + }, { - "name": "scope", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -37681,8 +38265,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_code_insert_input", - "description": "input type for inserting data into table \"auth_code\"", + "name": "app_stats_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { @@ -37698,11 +38282,11 @@ "deprecationReason": null }, { - "name": "auth_code", + "name": "date", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -37710,11 +38294,11 @@ "deprecationReason": null }, { - "name": "code_challenge", + "name": "unique_users", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -37722,95 +38306,104 @@ "deprecationReason": null }, { - "name": "code_challenge_method", + "name": "verifications", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "created_at", + "name": "unique_users", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "bigint", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "verifications", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "bigint", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "app_stats_update_column", + "description": "update columns of table \"app_stats\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "app_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nonce", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "date", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "unique_users", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "verifications", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "scope", - "description": null, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stats_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "INPUT_OBJECT", + "name": "app_stats_inc_input", "ofType": null }, "defaultValue": null, @@ -37818,11 +38411,11 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "app_stats_set_input", "ofType": null }, "defaultValue": null, @@ -37830,12 +38423,16 @@ "deprecationReason": null }, { - "name": "verification_level", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -37848,148 +38445,203 @@ }, { "kind": "OBJECT", - "name": "auth_code_max_fields", - "description": "aggregate max on columns", + "name": "app_stats_var_pop_fields", + "description": "aggregate var_pop on columns", "fields": [ { - "name": "app_id", + "name": "unique_users", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_code", + "name": "verifications", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "code_challenge", + "name": "unique_users", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge_method", + "name": "verifications", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stats_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "created_at", + "name": "unique_users", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "verifications", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "id", + "name": "rating_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nonce", + "name": "rating_sum", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stddev_order_by", + "description": "order by stddev() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "nullifier_hash", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_uri", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "updated_at", + "name": "rating_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_level", + "name": "rating_sum", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -38002,286 +38654,233 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "auth_code_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "app_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "app_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "auth_code", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "code_challenge_method", + "name": "rating_count", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "rating_sum", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "expires_at", + "name": "rating_count", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "rating_sum", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stream_cursor_input", + "description": "Streaming cursor of the table \"app\"", + "fields": null, + "inputFields": [ { - "name": "nonce", - "description": null, - "args": [], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stream_cursor_value_input", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, - "args": [], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "redirect_uri", + "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "deleted_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_level", + "name": "description_internal", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_code_mutation_response", - "description": "response of any mutation on the table \"auth_code\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_code", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_on_conflict", - "description": "on_conflict condition type for table \"auth_code\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", + "name": "dev_rewards_approved", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_code_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "engine", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_code_update_column", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "first_verified_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_order_by", - "description": "Ordering options when selecting data from \"auth_code\".", - "fields": null, - "inputFields": [ + }, { - "name": "app_id", + "name": "has_airdrop_component", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -38289,11 +38888,11 @@ "deprecationReason": null }, { - "name": "auth_code", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -38301,11 +38900,11 @@ "deprecationReason": null }, { - "name": "code_challenge", + "name": "is_archived", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -38313,11 +38912,11 @@ "deprecationReason": null }, { - "name": "code_challenge_method", + "name": "is_banned", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -38325,11 +38924,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "is_staging", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -38337,11 +38936,11 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "logo_url", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -38349,11 +38948,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "name", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -38361,11 +38960,11 @@ "deprecationReason": null }, { - "name": "nonce", + "name": "rating_count", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -38373,11 +38972,11 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "rating_sum", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -38385,11 +38984,11 @@ "deprecationReason": null }, { - "name": "redirect_uri", + "name": "status", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -38397,11 +38996,11 @@ "deprecationReason": null }, { - "name": "scope", + "name": "team_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -38412,8 +39011,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -38421,11 +39020,11 @@ "deprecationReason": null }, { - "name": "verification_level", + "name": "verified_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -38438,44 +39037,64 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "auth_code_pk_columns_input", - "description": "primary key columns input for table: auth_code", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "app_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "id", + "name": "rating_count", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_sum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "auth_code_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "app_sum_order_by", + "description": "order by sum() on columns of table \"app\"", "fields": null, "inputFields": [ { - "name": "scope", + "name": "rating_count", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_sum", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -38489,44 +39108,50 @@ }, { "kind": "ENUM", - "name": "auth_code_select_column", - "description": "select columns of table \"auth_code\"", + "name": "app_update_column", + "description": "update columns of table \"app\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "app_id", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_code", + "name": "deleted_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge", + "name": "description_internal", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge_method", + "name": "dev_rewards_approved", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "engine", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "first_verified_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "has_airdrop_component", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -38538,25 +39163,55 @@ "deprecationReason": null }, { - "name": "nonce", + "name": "is_archived", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "is_banned", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_uri", + "name": "is_staging", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "scope", + "name": "logo_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_count", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating_sum", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -38568,7 +39223,7 @@ "deprecationReason": null }, { - "name": "verification_level", + "name": "verified_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -38578,16 +39233,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "auth_code_set_input", - "description": "input type for updating data in table \"auth_code\"", + "name": "app_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "app_id", - "description": null, + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_inc_input", "ofType": null }, "defaultValue": null, @@ -38595,11 +39250,11 @@ "deprecationReason": null }, { - "name": "auth_code", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "app_set_input", "ofType": null }, "defaultValue": null, @@ -38607,47 +39262,73 @@ "deprecationReason": null }, { - "name": "code_challenge", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "code_challenge_method", + "name": "rating_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "rating_sum", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_var_pop_order_by", + "description": "order by var_pop() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "expires_at", + "name": "rating_count", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -38655,47 +39336,69 @@ "deprecationReason": null }, { - "name": "id", + "name": "rating_sum", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "nonce", + "name": "rating_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "rating_sum", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "app_var_samp_order_by", + "description": "order by var_samp() on columns of table \"app\"", + "fields": null, + "inputFields": [ { - "name": "redirect_uri", + "name": "rating_count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -38703,74 +39406,81 @@ "deprecationReason": null }, { - "name": "scope", + "name": "rating_sum", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "app_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "updated_at", + "name": "rating_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_level", + "name": "rating_sum", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "auth_code_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_code\"", + "name": "app_variance_order_by", + "description": "order by variance() on columns of table \"app\"", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "rating_count", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_stream_cursor_value_input", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "rating_sum", + "description": null, "type": { "kind": "ENUM", - "name": "cursor_ordering", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -38783,273 +39493,499 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "auth_code_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "auth_code", + "description": "columns and relationships of \"auth_code\"", + "fields": [ { "name": "app_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "auth_code", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "code_challenge", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "code_challenge_method", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "expires_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "nonce", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "nullifier_hash", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "redirect_uri", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "scope", "description": null, + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", "name": "jsonb", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "verification_level", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "auth_code_update_column", - "description": "update columns of table \"auth_code\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "auth_code_aggregate", + "description": "aggregated selection of \"auth_code\"", + "fields": [ { - "name": "auth_code", - "description": "column name", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "auth_code_aggregate_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "code_challenge", - "description": "column name", + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "auth_code", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "auth_code_aggregate_fields", + "description": "aggregate fields of \"auth_code\"", + "fields": [ { - "name": "code_challenge_method", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "auth_code_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "created_at", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "auth_code_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "auth_code_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_code_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ + { + "name": "scope", + "description": null, + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "description": "Boolean expression to filter rows from the table \"auth_code\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nonce", - "description": "column name", + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": "column name", + "name": "app_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_uri", - "description": "column name", + "name": "auth_code", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "scope", - "description": "column name", + "name": "code_challenge", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "code_challenge_method", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "verification_level", - "description": "column name", + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_code_updates", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "expires_at", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_append_input", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39057,11 +39993,11 @@ "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "id", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_at_path_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39069,11 +40005,11 @@ "deprecationReason": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "nonce", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_elem_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39081,11 +40017,11 @@ "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "nullifier_hash", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_key_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39093,11 +40029,11 @@ "deprecationReason": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "redirect_uri", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_prepend_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39105,11 +40041,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "scope", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_set_input", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null, @@ -39117,15 +40053,71 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "updated_at", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verification_level", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "auth_code_constraint", + "description": "unique or primary key constraints on table \"auth_code\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "auth_code_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_at_path_input", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "fields": null, + "inputFields": [ + { + "name": "scope", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -39138,39 +40130,63 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "bigint", - "description": null, + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_elem_input", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "scope", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.", + "name": "auth_code_delete_key_input", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "scope", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "auth_code_insert_input", + "description": "input type for inserting data into table \"auth_code\"", + "fields": null, + "inputFields": [ { - "name": "_gt", + "name": "app_id", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, @@ -39178,11 +40194,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "auth_code", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, @@ -39190,31 +40206,23 @@ "deprecationReason": null }, { - "name": "_in", + "name": "code_challenge", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "code_challenge_method", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -39222,11 +40230,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -39234,11 +40242,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "expires_at", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -39246,11 +40254,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "bigint", + "name": "String", "ofType": null }, "defaultValue": null, @@ -39258,484 +40266,280 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "nonce", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "cache", - "description": "columns and relationships of \"cache\"", - "fields": [ + }, { - "name": "created_at", + "name": "nullifier_hash", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "redirect_uri", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "key", + "name": "scope", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "verification_level", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "cache_aggregate", - "description": "aggregated selection of \"cache\"", + "name": "auth_code_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "aggregate", + "name": "app_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "cache_aggregate_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", + "name": "auth_code", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "cache", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "cache_aggregate_fields", - "description": "aggregate fields of \"cache\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "cache_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "code_challenge", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "cache_max_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "code_challenge_method", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "cache_min_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "description": "Boolean expression to filter rows from the table \"cache\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_not", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "expires_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "key", + "name": "nonce", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "nullifier_hash", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "redirect_uri", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "cache_constraint", - "description": "unique or primary key constraints on table \"cache\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "cache_key_key", - "description": "unique or primary key constraint on columns \"key\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "cache_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "cache_insert_input", - "description": "input type for inserting data into table \"cache\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", + "name": "updated_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "verification_level", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "auth_code_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "key", + "name": "app_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "auth_code", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "cache_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "created_at", + "name": "code_challenge", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "code_challenge_method", "description": null, "args": [], "type": { @@ -39747,19 +40551,19 @@ "deprecationReason": null }, { - "name": "key", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "expires_at", "description": null, "args": [], "type": { @@ -39771,7 +40575,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "id", "description": null, "args": [], "type": { @@ -39781,32 +40585,21 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "cache_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "created_at", + "name": "nonce", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "nullifier_hash", "description": null, "args": [], "type": { @@ -39818,7 +40611,7 @@ "deprecationReason": null }, { - "name": "key", + "name": "redirect_uri", "description": null, "args": [], "type": { @@ -39842,7 +40635,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "verification_level", "description": null, "args": [], "type": { @@ -39861,8 +40654,8 @@ }, { "kind": "OBJECT", - "name": "cache_mutation_response", - "description": "response of any mutation on the table \"cache\"", + "name": "auth_code_mutation_response", + "description": "response of any mutation on the table \"auth_code\"", "fields": [ { "name": "affected_rows", @@ -39895,7 +40688,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "cache", + "name": "auth_code", "ofType": null } } @@ -39912,8 +40705,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "cache_on_conflict", - "description": "on_conflict condition type for table \"cache\"", + "name": "auth_code_on_conflict", + "description": "on_conflict condition type for table \"auth_code\"", "fields": null, "inputFields": [ { @@ -39924,7 +40717,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "cache_constraint", + "name": "auth_code_constraint", "ofType": null } }, @@ -39946,7 +40739,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "cache_update_column", + "name": "auth_code_update_column", "ofType": null } } @@ -39961,7 +40754,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", + "name": "auth_code_bool_exp", "ofType": null }, "defaultValue": null, @@ -39975,12 +40768,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "cache_order_by", - "description": "Ordering options when selecting data from \"cache\".", + "name": "auth_code_order_by", + "description": "Ordering options when selecting data from \"auth_code\".", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "app_id", "description": null, "type": { "kind": "ENUM", @@ -39992,7 +40785,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "auth_code", "description": null, "type": { "kind": "ENUM", @@ -40004,7 +40797,7 @@ "deprecationReason": null }, { - "name": "key", + "name": "code_challenge", "description": null, "type": { "kind": "ENUM", @@ -40016,7 +40809,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "code_challenge_method", "description": null, "type": { "kind": "ENUM", @@ -40028,7 +40821,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -40038,92 +40831,49 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "cache_pk_columns_input", - "description": "primary key columns input for table: cache", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "expires_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "cache_select_column", - "description": "select columns of table \"cache\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null }, { "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "column name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "nonce", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "cache_set_input", - "description": "input type for updating data in table \"cache\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", + "name": "nullifier_hash", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -40131,11 +40881,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "redirect_uri", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -40143,11 +40893,11 @@ "deprecationReason": null }, { - "name": "key", + "name": "scope", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -40158,8 +40908,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -40167,11 +40917,11 @@ "deprecationReason": null }, { - "name": "value", + "name": "verification_level", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -40185,37 +40935,25 @@ }, { "kind": "INPUT_OBJECT", - "name": "cache_stream_cursor_input", - "description": "Streaming cursor of the table \"cache\"", + "name": "auth_code_pk_columns_input", + "description": "primary key columns input for table: auth_code", "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_stream_cursor_value_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -40224,85 +40962,67 @@ }, { "kind": "INPUT_OBJECT", - "name": "cache_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "auth_code_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "scope", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "jsonb", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "auth_code_select_column", + "description": "select columns of table \"auth_code\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "auth_code", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "code_challenge", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, + "name": "code_challenge_method", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "cache_update_column", - "description": "update columns of table \"cache\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "created_at", + "name": "expires_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -40314,7 +41034,25 @@ "deprecationReason": null }, { - "name": "key", + "name": "nonce", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirect_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -40326,7 +41064,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "verification_level", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -40336,16 +41074,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "cache_updates", - "description": null, + "name": "auth_code_set_input", + "description": "input type for updating data in table \"auth_code\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "app_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "cache_set_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40353,71 +41091,47 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "auth_code", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "cursor_ordering", - "description": "ordering argument of a cursor", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "ASC", - "description": "ascending ordering of the cursor", + "name": "code_challenge", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DESC", - "description": "descending ordering of the cursor", + "name": "code_challenge_method", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "date", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "description": "Boolean expression to compare columns of type \"date\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_eq", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -40425,11 +41139,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "expires_at", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -40437,11 +41151,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40449,31 +41163,23 @@ "deprecationReason": null }, { - "name": "_in", + "name": "nonce", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "nullifier_hash", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40481,11 +41187,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "redirect_uri", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40493,11 +41199,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "scope", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -40505,11 +41211,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", - "name": "date", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -40517,20 +41223,12 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "verification_level", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -40542,27 +41240,56 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "description": null, + "kind": "INPUT_OBJECT", + "name": "auth_code_stream_cursor_input", + "description": "Streaming cursor of the table \"auth_code\"", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "illegal_content_sub_category_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"illegal_content_sub_category_enum\". All fields are combined with logical 'AND'.", + "name": "auth_code_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "app_id", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40570,11 +41297,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "auth_code", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40582,11 +41309,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "code_challenge", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40594,31 +41321,23 @@ "deprecationReason": null }, { - "name": "_in", + "name": "code_challenge_method", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -40626,11 +41345,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "expires_at", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -40638,11 +41357,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40650,11 +41369,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "nonce", "description": null, "type": { "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", + "name": "String", "ofType": null }, "defaultValue": null, @@ -40662,199 +41381,312 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "nullifier_hash", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "illegal_content_sub_category_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "invite", - "description": "Invites", - "fields": [ - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "expires_at", + "name": "redirect_uri", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "scope", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "updated_at", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "verification_level", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "invite_aggregate", - "description": "aggregated selection of \"invite\"", - "fields": [ + "kind": "ENUM", + "name": "auth_code_update_column", + "description": "update columns of table \"auth_code\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "invite_aggregate_fields", - "ofType": null - }, + "name": "app_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "invite", - "ofType": null - } - } - } - }, + "name": "auth_code", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_challenge", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code_challenge_method", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expires_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nonce", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirect_uri", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verification_level", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "invite_aggregate_bool_exp", + "name": "auth_code_updates", "description": null, "fields": null, "inputFields": [ { - "name": "count", - "description": null, + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { "kind": "INPUT_OBJECT", - "name": "invite_aggregate_bool_exp_count", + "name": "auth_code_append_input", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "invite_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "bigint", "description": null, "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.", + "fields": null, "inputFields": [ { - "name": "arguments", + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", "description": null, "type": { "kind": "LIST", @@ -40863,8 +41695,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "invite_select_column", + "kind": "SCALAR", + "name": "bigint", "ofType": null } } @@ -40874,7 +41706,7 @@ "deprecationReason": null }, { - "name": "distinct", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", @@ -40886,11 +41718,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -40898,15 +41730,43 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "_lte", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + } } }, "defaultValue": null, @@ -40920,52 +41780,19 @@ }, { "kind": "OBJECT", - "name": "invite_aggregate_fields", - "description": "aggregate fields of \"invite\"", + "name": "cache", + "description": "columns and relationships of \"cache\"", "fields": [ { - "name": "count", + "name": "created_at", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "invite_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null } }, @@ -40973,91 +41800,92 @@ "deprecationReason": null }, { - "name": "max", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "invite_max_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "invite_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "invite_aggregate_order_by", - "description": "order by aggregate values of table \"invite\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "invite_max_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "value", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "invite_min_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "invite_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"invite\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "cache_aggregate", + "description": "aggregated selection of \"cache\"", + "fields": [ { - "name": "data", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "cache_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -41068,38 +41896,110 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_insert_input", + "kind": "OBJECT", + "name": "cache", "ofType": null } } } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "cache_aggregate_fields", + "description": "aggregate fields of \"cache\"", + "fields": [ + { + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "cache_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "max", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "invite_on_conflict", + "kind": "OBJECT", + "name": "cache_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "cache_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", - "description": "Boolean expression to filter rows from the table \"invite\". All fields are combined with a logical 'AND'.", + "name": "cache_bool_exp", + "description": "Boolean expression to filter rows from the table \"cache\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -41113,7 +42013,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "cache_bool_exp", "ofType": null } } @@ -41127,7 +42027,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "cache_bool_exp", "ofType": null }, "defaultValue": null, @@ -41145,7 +42045,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "cache_bool_exp", "ofType": null } } @@ -41155,11 +42055,11 @@ "deprecationReason": null }, { - "name": "email", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -41167,11 +42067,11 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -41179,7 +42079,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -41191,11 +42091,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "updated_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -41203,7 +42103,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "value", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -41221,14 +42121,20 @@ }, { "kind": "ENUM", - "name": "invite_constraint", - "description": "unique or primary key constraints on table \"invite\"", + "name": "cache_constraint", + "description": "unique or primary key constraints on table \"cache\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "invite_pkey", + "name": "cache_key_key", + "description": "unique or primary key constraint on columns \"key\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cache_pkey", "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null @@ -41238,16 +42144,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_insert_input", - "description": "input type for inserting data into table \"invite\"", + "name": "cache_insert_input", + "description": "input type for inserting data into table \"cache\"", "fields": null, "inputFields": [ { - "name": "email", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -41255,11 +42161,11 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41267,7 +42173,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "type": { "kind": "SCALAR", @@ -41279,11 +42185,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -41291,7 +42197,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "value", "description": null, "type": { "kind": "SCALAR", @@ -41309,35 +42215,35 @@ }, { "kind": "OBJECT", - "name": "invite_max_fields", + "name": "cache_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "email", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "args": [], "type": { @@ -41349,7 +42255,19 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": null, "args": [], "type": { @@ -41367,72 +42285,25 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "invite_max_order_by", - "description": "order by max() on columns of table \"invite\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "cache_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "email", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "invite_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "email", - "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41443,31 +42314,31 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "key", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "updated_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "value", "description": null, "args": [], "type": { @@ -41484,69 +42355,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "invite_min_order_by", - "description": "order by min() on columns of table \"invite\"", - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "invite_mutation_response", - "description": "response of any mutation on the table \"invite\"", + "name": "cache_mutation_response", + "description": "response of any mutation on the table \"cache\"", "fields": [ { "name": "affected_rows", @@ -41579,7 +42391,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "invite", + "name": "cache", "ofType": null } } @@ -41596,8 +42408,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_on_conflict", - "description": "on_conflict condition type for table \"invite\"", + "name": "cache_on_conflict", + "description": "on_conflict condition type for table \"cache\"", "fields": null, "inputFields": [ { @@ -41608,7 +42420,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "invite_constraint", + "name": "cache_constraint", "ofType": null } }, @@ -41630,7 +42442,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "invite_update_column", + "name": "cache_update_column", "ofType": null } } @@ -41645,7 +42457,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "cache_bool_exp", "ofType": null }, "defaultValue": null, @@ -41659,12 +42471,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_order_by", - "description": "Ordering options when selecting data from \"invite\".", + "name": "cache_order_by", + "description": "Ordering options when selecting data from \"cache\".", "fields": null, "inputFields": [ { - "name": "email", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -41676,7 +42488,7 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -41688,7 +42500,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "type": { "kind": "ENUM", @@ -41700,11 +42512,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -41712,7 +42524,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "value", "description": null, "type": { "kind": "ENUM", @@ -41730,8 +42542,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_pk_columns_input", - "description": "primary key columns input for table: invite", + "name": "cache_pk_columns_input", + "description": "primary key columns input for table: cache", "fields": null, "inputFields": [ { @@ -41757,32 +42569,38 @@ }, { "kind": "ENUM", - "name": "invite_select_column", - "description": "select columns of table \"invite\"", + "name": "cache_select_column", + "description": "select columns of table \"cache\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "email", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "key", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -41792,16 +42610,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_set_input", - "description": "input type for updating data in table \"invite\"", + "name": "cache_set_input", + "description": "input type for updating data in table \"cache\"", "fields": null, "inputFields": [ { - "name": "email", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -41809,11 +42627,11 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41821,7 +42639,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "type": { "kind": "SCALAR", @@ -41833,7 +42651,19 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": null, "type": { "kind": "SCALAR", @@ -41851,8 +42681,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_stream_cursor_input", - "description": "Streaming cursor of the table \"invite\"", + "name": "cache_stream_cursor_input", + "description": "Streaming cursor of the table \"cache\"", "fields": null, "inputFields": [ { @@ -41863,7 +42693,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_stream_cursor_value_input", + "name": "cache_stream_cursor_value_input", "ofType": null } }, @@ -41890,16 +42720,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_stream_cursor_value_input", + "name": "cache_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "email", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -41907,11 +42737,11 @@ "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41919,7 +42749,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "key", "description": null, "type": { "kind": "SCALAR", @@ -41931,7 +42761,19 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": null, "type": { "kind": "SCALAR", @@ -41949,32 +42791,38 @@ }, { "kind": "ENUM", - "name": "invite_update_column", - "description": "update columns of table \"invite\"", + "name": "cache_update_column", + "description": "update columns of table \"cache\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "email", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "expires_at", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "key", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -41984,7 +42832,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "invite_updates", + "name": "cache_updates", "description": null, "fields": null, "inputFields": [ @@ -41993,7 +42841,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "invite_set_input", + "name": "cache_set_input", "ofType": null }, "defaultValue": null, @@ -42008,7 +42856,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "cache_bool_exp", "ofType": null } }, @@ -42021,9 +42869,32 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "cursor_ordering", + "description": "ordering argument of a cursor", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ASC", + "description": "ascending ordering of the cursor", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DESC", + "description": "descending ordering of the cursor", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "SCALAR", - "name": "jsonb", + "name": "date", "description": null, "fields": null, "inputFields": null, @@ -42033,39 +42904,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "description": null, + "name": "date_comparison_exp", + "description": "Boolean expression to compare columns of type \"date\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "String", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_cast", + "name": "_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -42073,11 +42933,11 @@ "deprecationReason": null }, { - "name": "_contained_in", - "description": "is the column contained in the given json value", + "name": "_gte", + "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "date", "ofType": null }, "defaultValue": null, @@ -42085,23 +42945,31 @@ "deprecationReason": null }, { - "name": "_contains", - "description": "does the column contain the given json value at the top level", + "name": "_in", + "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_eq", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -42109,11 +42977,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "_lt", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "date", "ofType": null }, "defaultValue": null, @@ -42121,11 +42989,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "_lte", "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "date", "ofType": null }, "defaultValue": null, @@ -42133,11 +43001,11 @@ "deprecationReason": null }, { - "name": "_has_key", - "description": "does the string exist as a top-level key in the column", + "name": "_neq", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -42145,8 +43013,8 @@ "deprecationReason": null }, { - "name": "_has_keys_all", - "description": "do all of these strings exist as top-level keys in the column", + "name": "_nin", + "description": null, "type": { "kind": "LIST", "name": null, @@ -42155,7 +43023,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null } } @@ -42163,22 +43031,59 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "illegal_content_sub_category_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"illegal_content_sub_category_enum\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_has_keys_any", - "description": "do any of these strings exist as top-level keys in the column", + "name": "_gt", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "illegal_content_sub_category_enum", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -42195,7 +43100,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "jsonb", + "name": "illegal_content_sub_category_enum", "ofType": null } } @@ -42221,7 +43126,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "illegal_content_sub_category_enum", "ofType": null }, "defaultValue": null, @@ -42233,7 +43138,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "illegal_content_sub_category_enum", "ofType": null }, "defaultValue": null, @@ -42245,7 +43150,7 @@ "description": null, "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "illegal_content_sub_category_enum", "ofType": null }, "defaultValue": null, @@ -42263,7 +43168,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "jsonb", + "name": "illegal_content_sub_category_enum", "ofType": null } } @@ -42279,11 +43184,11 @@ }, { "kind": "OBJECT", - "name": "jwks", - "description": "Stores valid JWKs used for offline signature verification", + "name": "invite", + "description": "Invites", "fields": [ { - "name": "created_at", + "name": "email", "description": null, "args": [], "type": { @@ -42291,7 +43196,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -42331,40 +43236,15 @@ "deprecationReason": null }, { - "name": "kms_id", - "description": null, + "name": "team", + "description": "An object relationship", "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_jwk", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "OBJECT", + "name": "team", "ofType": null } }, @@ -42372,7 +43252,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, "args": [], "type": { @@ -42380,7 +43260,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -42395,8 +43275,8 @@ }, { "kind": "OBJECT", - "name": "jwks_aggregate", - "description": "aggregated selection of \"jwks\"", + "name": "invite_aggregate", + "description": "aggregated selection of \"invite\"", "fields": [ { "name": "aggregate", @@ -42404,7 +43284,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "jwks_aggregate_fields", + "name": "invite_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -42425,7 +43305,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks", + "name": "invite", "ofType": null } } @@ -42440,10 +43320,104 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "invite_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "invite_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "invite_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "jwks_aggregate_fields", - "description": "aggregate fields of \"jwks\"", + "name": "invite_aggregate_fields", + "description": "aggregate fields of \"invite\"", "fields": [ { "name": "count", @@ -42460,7 +43434,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "jwks_select_column", + "name": "invite_select_column", "ofType": null } } @@ -42500,7 +43474,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "jwks_max_fields", + "name": "invite_max_fields", "ofType": null }, "isDeprecated": false, @@ -42512,7 +43486,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "jwks_min_fields", + "name": "invite_min_fields", "ofType": null }, "isDeprecated": false, @@ -42526,16 +43500,40 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "invite_aggregate_order_by", + "description": "order by aggregate values of table \"invite\"", "fields": null, "inputFields": [ { - "name": "public_jwk", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_max_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_min_order_by", "ofType": null }, "defaultValue": null, @@ -42549,8 +43547,55 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", - "description": "Boolean expression to filter rows from the table \"jwks\". All fields are combined with a logical 'AND'.", + "name": "invite_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"invite\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "invite_bool_exp", + "description": "Boolean expression to filter rows from the table \"invite\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -42564,7 +43609,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "invite_bool_exp", "ofType": null } } @@ -42578,7 +43623,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -42596,7 +43641,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "invite_bool_exp", "ofType": null } } @@ -42606,11 +43651,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "email", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -42642,23 +43687,11 @@ "deprecationReason": null }, { - "name": "kms_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_jwk", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -42666,11 +43699,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -42684,20 +43717,14 @@ }, { "kind": "ENUM", - "name": "jwks_constraint", - "description": "unique or primary key constraints on table \"jwks\"", + "name": "invite_constraint", + "description": "unique or primary key constraints on table \"invite\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "jwks_kms_id_key", - "description": "unique or primary key constraint on columns \"kms_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jwks_pkey", + "name": "invite_pkey", "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null @@ -42707,66 +43734,60 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "invite_insert_input", + "description": "input type for inserting data into table \"invite\"", "fields": null, "inputFields": [ { - "name": "public_jwk", + "name": "email", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ + }, { - "name": "public_jwk", + "name": "expires_at", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ + }, { - "name": "public_jwk", + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "team_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", "description": null, "type": { "kind": "SCALAR", @@ -42783,65 +43804,88 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "jwks_insert_input", - "description": "input type for inserting data into table \"jwks\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "invite_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "created_at", + "name": "email", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "expires_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "kms_id", + "name": "team_id", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "invite_max_order_by", + "description": "order by max() on columns of table \"invite\"", + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "public_jwk", + "name": "expires_at", "description": null, "type": { - "kind": "SCALAR", - "name": "jsonb", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -42849,11 +43893,23 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -42867,16 +43923,16 @@ }, { "kind": "OBJECT", - "name": "jwks_max_fields", - "description": "aggregate max on columns", + "name": "invite_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "created_at", + "name": "email", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -42907,7 +43963,7 @@ "deprecationReason": null }, { - "name": "kms_id", + "name": "team_id", "description": null, "args": [], "type": { @@ -42917,18 +43973,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -42937,80 +43981,68 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "jwks_min_fields", - "description": "aggregate min on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "invite_min_order_by", + "description": "order by min() on columns of table \"invite\"", + "fields": null, + "inputFields": [ { - "name": "created_at", + "name": "email", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "expires_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kms_id", - "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "jwks_mutation_response", - "description": "response of any mutation on the table \"jwks\"", + "name": "invite_mutation_response", + "description": "response of any mutation on the table \"invite\"", "fields": [ { "name": "affected_rows", @@ -43043,7 +44075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks", + "name": "invite", "ofType": null } } @@ -43060,8 +44092,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_on_conflict", - "description": "on_conflict condition type for table \"jwks\"", + "name": "invite_on_conflict", + "description": "on_conflict condition type for table \"invite\"", "fields": null, "inputFields": [ { @@ -43072,7 +44104,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "jwks_constraint", + "name": "invite_constraint", "ofType": null } }, @@ -43094,7 +44126,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "jwks_update_column", + "name": "invite_update_column", "ofType": null } } @@ -43109,7 +44141,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -43123,12 +44155,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_order_by", - "description": "Ordering options when selecting data from \"jwks\".", + "name": "invite_order_by", + "description": "Ordering options when selecting data from \"invite\".", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "email", "description": null, "type": { "kind": "ENUM", @@ -43164,23 +44196,11 @@ "deprecationReason": null }, { - "name": "kms_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_jwk", + "name": "team", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "team_order_by", "ofType": null }, "defaultValue": null, @@ -43188,7 +44208,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "team_id", "description": null, "type": { "kind": "ENUM", @@ -43206,8 +44226,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_pk_columns_input", - "description": "primary key columns input for table: jwks", + "name": "invite_pk_columns_input", + "description": "primary key columns input for table: invite", "fields": null, "inputFields": [ { @@ -43231,39 +44251,16 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "jwks_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "public_jwk", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "ENUM", - "name": "jwks_select_column", - "description": "select columns of table \"jwks\"", + "name": "invite_select_column", + "description": "select columns of table \"invite\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", + "name": "email", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -43281,19 +44278,7 @@ "deprecationReason": null }, { - "name": "kms_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "public_jwk", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", + "name": "team_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -43303,16 +44288,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_set_input", - "description": "input type for updating data in table \"jwks\"", + "name": "invite_set_input", + "description": "input type for updating data in table \"invite\"", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -43344,7 +44329,7 @@ "deprecationReason": null }, { - "name": "kms_id", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", @@ -43354,30 +44339,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "public_jwk", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -43386,8 +44347,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_stream_cursor_input", - "description": "Streaming cursor of the table \"jwks\"", + "name": "invite_stream_cursor_input", + "description": "Streaming cursor of the table \"invite\"", "fields": null, "inputFields": [ { @@ -43398,7 +44359,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_stream_cursor_value_input", + "name": "invite_stream_cursor_value_input", "ofType": null } }, @@ -43425,16 +44386,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "jwks_stream_cursor_value_input", + "name": "invite_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -43466,7 +44427,7 @@ "deprecationReason": null }, { - "name": "kms_id", + "name": "team_id", "description": null, "type": { "kind": "SCALAR", @@ -43476,30 +44437,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "public_jwk", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -43508,14 +44445,14 @@ }, { "kind": "ENUM", - "name": "jwks_update_column", - "description": "update columns of table \"jwks\"", + "name": "invite_update_column", + "description": "update columns of table \"invite\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created_at", + "name": "email", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -43533,50 +44470,98 @@ "deprecationReason": null }, { - "name": "kms_id", + "name": "team_id", "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "invite_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "public_jwk", - "description": "column name", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_set_input", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_bool_exp", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "jsonb", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "jwks_updates", + "name": "jsonb_cast_exp", "description": null, "fields": null, "inputFields": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "String", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jwks_append_input", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "_cast", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jwks_delete_at_path_input", + "name": "jsonb_cast_exp", "ofType": null }, "defaultValue": null, @@ -43584,11 +44569,11 @@ "deprecationReason": null }, { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "_contained_in", + "description": "is the column contained in the given json value", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_elem_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -43596,11 +44581,11 @@ "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "_contains", + "description": "does the column contain the given json value at the top level", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_key_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -43608,11 +44593,11 @@ "deprecationReason": null }, { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "_eq", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_prepend_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -43620,11 +44605,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "_gt", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_set_input", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -43632,161 +44617,169 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "_gte", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "localisations", - "description": "columns and relationships of \"localisations\"", - "fields": [ + }, { - "name": "app_metadata", - "description": "An object relationship", - "args": [], + "name": "_has_key", + "description": "does the string exist as a top-level key in the column", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_has_keys_all", + "description": "do all of these strings exist as top-level keys in the column", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "app_metadata", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata_id", - "description": null, - "args": [], + "name": "_has_keys_any", + "description": "do any of these strings exist as top-level keys in the column", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "_is_null", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "_lt", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "_lte", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", + "name": "_neq", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "_nin", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "jwks", + "description": "Stores valid JWKs used for offline signature verification", + "fields": [ { - "name": "name", + "name": "created_at", "description": null, "args": [], "type": { @@ -43794,7 +44787,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } }, @@ -43802,7 +44795,7 @@ "deprecationReason": null }, { - "name": "short_name", + "name": "expires_at", "description": null, "args": [], "type": { @@ -43810,7 +44803,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } }, @@ -43818,51 +44811,56 @@ "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "id", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "kms_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", + "name": "public_jwk", "description": null, - "args": [], + "args": [ + { + "name": "path", + "description": "JSON select path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null } }, @@ -43870,7 +44868,7 @@ "deprecationReason": null }, { - "name": "world_app_description", + "name": "updated_at", "description": null, "args": [], "type": { @@ -43878,7 +44876,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } }, @@ -43893,8 +44891,8 @@ }, { "kind": "OBJECT", - "name": "localisations_aggregate", - "description": "aggregated selection of \"localisations\"", + "name": "jwks_aggregate", + "description": "aggregated selection of \"jwks\"", "fields": [ { "name": "aggregate", @@ -43902,7 +44900,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "localisations_aggregate_fields", + "name": "jwks_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -43923,7 +44921,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations", + "name": "jwks", "ofType": null } } @@ -43939,104 +44937,10 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "localisations_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "localisations_aggregate_fields", - "description": "aggregate fields of \"localisations\"", - "fields": [ + "kind": "OBJECT", + "name": "jwks_aggregate_fields", + "description": "aggregate fields of \"jwks\"", + "fields": [ { "name": "count", "description": null, @@ -44052,7 +44956,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "localisations_select_column", + "name": "jwks_select_column", "ofType": null } } @@ -44092,7 +44996,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "localisations_max_fields", + "name": "jwks_max_fields", "ofType": null }, "isDeprecated": false, @@ -44104,7 +45008,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "localisations_min_fields", + "name": "jwks_min_fields", "ofType": null }, "isDeprecated": false, @@ -44118,87 +45022,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "localisations_aggregate_order_by", - "description": "order by aggregate values of table \"localisations\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_max_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_min_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "localisations_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"localisations\"", + "name": "jwks_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", "fields": null, "inputFields": [ { - "name": "data", + "name": "public_jwk", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_on_conflict", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -44212,8 +45045,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "description": "Boolean expression to filter rows from the table \"localisations\". All fields are combined with a logical 'AND'.", + "name": "jwks_bool_exp", + "description": "Boolean expression to filter rows from the table \"jwks\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -44227,7 +45060,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "jwks_bool_exp", "ofType": null } } @@ -44241,7 +45074,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "jwks_bool_exp", "ofType": null }, "defaultValue": null, @@ -44259,7 +45092,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "jwks_bool_exp", "ofType": null } } @@ -44268,30 +45101,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "app_metadata", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_metadata_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "created_at", "description": null, @@ -44305,23 +45114,11 @@ "deprecationReason": null }, { - "name": "description", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hero_image_url", + "name": "expires_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -44341,43 +45138,7 @@ "deprecationReason": null }, { - "name": "locale", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "meta_tag_image_url", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "short_name", + "name": "kms_id", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -44389,11 +45150,11 @@ "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "public_jwk", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_array_comparison_exp", + "name": "jsonb_comparison_exp", "ofType": null }, "defaultValue": null, @@ -44411,30 +45172,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "world_app_button_text", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world_app_description", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -44443,21 +45180,21 @@ }, { "kind": "ENUM", - "name": "localisations_constraint", - "description": "unique or primary key constraints on table \"localisations\"", + "name": "jwks_constraint", + "description": "unique or primary key constraints on table \"jwks\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "localisations_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "jwks_kms_id_key", + "description": "unique or primary key constraint on columns \"kms_id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_app_metadata_locale", - "description": "unique or primary key constraint on columns \"locale\", \"app_metadata_id\"", + "name": "jwks_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -44466,60 +45203,66 @@ }, { "kind": "INPUT_OBJECT", - "name": "localisations_insert_input", - "description": "input type for inserting data into table \"localisations\"", + "name": "jwks_delete_at_path_input", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "fields": null, "inputFields": [ { - "name": "app_metadata", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_metadata_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", + "name": "public_jwk", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_elem_input", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "fields": null, + "inputFields": [ { - "name": "description", + "name": "public_jwk", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_key_input", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "fields": null, + "inputFields": [ { - "name": "hero_image_url", + "name": "public_jwk", "description": null, "type": { "kind": "SCALAR", @@ -44529,13 +45272,24 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_insert_input", + "description": "input type for inserting data into table \"jwks\"", + "fields": null, + "inputFields": [ { - "name": "id", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -44543,11 +45297,11 @@ "deprecationReason": null }, { - "name": "locale", + "name": "expires_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -44555,7 +45309,7 @@ "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -44567,7 +45321,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "kms_id", "description": null, "type": { "kind": "SCALAR", @@ -44579,37 +45333,17 @@ "deprecationReason": null }, { - "name": "short_name", + "name": "public_jwk", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, - { - "name": "showcase_img_urls", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updated_at", "description": null, @@ -44621,30 +45355,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "world_app_button_text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world_app_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -44653,23 +45363,23 @@ }, { "kind": "OBJECT", - "name": "localisations_max_fields", + "name": "jwks_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "app_metadata_id", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "expires_at", "description": null, "args": [], "type": { @@ -44681,7 +45391,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "id", "description": null, "args": [], "type": { @@ -44693,7 +45403,7 @@ "deprecationReason": null }, { - "name": "hero_image_url", + "name": "kms_id", "description": null, "args": [], "type": { @@ -44705,43 +45415,54 @@ "deprecationReason": null }, { - "name": "id", + "name": "updated_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "jwks_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "locale", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "expires_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "args": [], "type": { @@ -44753,7 +45474,7 @@ "deprecationReason": null }, { - "name": "short_name", + "name": "kms_id", "description": null, "args": [], "type": { @@ -44764,26 +45485,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "showcase_img_urls", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "updated_at", "description": null, @@ -44795,27 +45496,54 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "jwks_mutation_response", + "description": "response of any mutation on the table \"jwks\"", + "fields": [ { - "name": "world_app_button_text", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "jwks", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -44828,72 +45556,75 @@ }, { "kind": "INPUT_OBJECT", - "name": "localisations_max_order_by", - "description": "order by max() on columns of table \"localisations\"", + "name": "jwks_on_conflict", + "description": "on_conflict condition type for table \"jwks\"", "fields": null, "inputFields": [ { - "name": "app_metadata_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", + "name": "constraint", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "jwks_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "update_columns", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "jwks_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_order_by", + "description": "Ordering options when selecting data from \"jwks\".", + "fields": null, + "inputFields": [ { - "name": "locale", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -44905,7 +45636,7 @@ "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "expires_at", "description": null, "type": { "kind": "ENUM", @@ -44917,7 +45648,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -44929,7 +45660,7 @@ "deprecationReason": null }, { - "name": "short_name", + "name": "kms_id", "description": null, "type": { "kind": "ENUM", @@ -44941,7 +45672,7 @@ "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "public_jwk", "description": null, "type": { "kind": "ENUM", @@ -44963,25 +45694,51 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_pk_columns_input", + "description": "primary key columns input for table: jwks", + "fields": null, + "inputFields": [ { - "name": "world_app_button_text", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_prepend_input", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "fields": null, + "inputFields": [ { - "name": "world_app_description", + "name": "public_jwk", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -44994,192 +45751,186 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "localisations_min_fields", - "description": "aggregate min on columns", - "fields": [ + "kind": "ENUM", + "name": "jwks_select_column", + "description": "select columns of table \"jwks\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "app_metadata_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "name": "expires_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "kms_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "public_jwk", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_set_input", + "description": "input type for updating data in table \"jwks\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "expires_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "short_name", + "name": "kms_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "public_jwk", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_stream_cursor_input", + "description": "Streaming cursor of the table \"jwks\"", + "fields": null, + "inputFields": [ { - "name": "world_app_button_text", - "description": null, - "args": [], + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_stream_cursor_value_input", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", - "description": null, - "args": [], + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "localisations_min_order_by", - "description": "order by min() on columns of table \"localisations\"", + "name": "jwks_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "app_metadata_id", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -45187,11 +45938,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "expires_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -45199,11 +45950,11 @@ "deprecationReason": null }, { - "name": "description", + "name": "id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45211,11 +45962,11 @@ "deprecationReason": null }, { - "name": "hero_image_url", + "name": "kms_id", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45223,11 +45974,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "public_jwk", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -45235,23 +45986,81 @@ "deprecationReason": null }, { - "name": "locale", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "jwks_update_column", + "description": "update columns of table \"jwks\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "meta_tag_image_url", - "description": null, + "name": "expires_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kms_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "public_jwk", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "jwks_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_append_input", "ofType": null }, "defaultValue": null, @@ -45259,11 +46068,11 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_delete_at_path_input", "ofType": null }, "defaultValue": null, @@ -45271,11 +46080,11 @@ "deprecationReason": null }, { - "name": "short_name", - "description": null, + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_delete_elem_input", "ofType": null }, "defaultValue": null, @@ -45283,11 +46092,11 @@ "deprecationReason": null }, { - "name": "showcase_img_urls", - "description": null, + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_delete_key_input", "ofType": null }, "defaultValue": null, @@ -45295,11 +46104,11 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_prepend_input", "ofType": null }, "defaultValue": null, @@ -45307,11 +46116,11 @@ "deprecationReason": null }, { - "name": "world_app_button_text", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "jwks_set_input", "ofType": null }, "defaultValue": null, @@ -45319,12 +46128,16 @@ "deprecationReason": null }, { - "name": "world_app_description", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -45337,19 +46150,19 @@ }, { "kind": "OBJECT", - "name": "localisations_mutation_response", - "description": "response of any mutation on the table \"localisations\"", + "name": "localisations", + "description": "columns and relationships of \"localisations\"", "fields": [ { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "app_metadata", + "description": "An object relationship", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "app_metadata", "ofType": null } }, @@ -45357,254 +46170,325 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "name": "app_metadata_id", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "localisations", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "localisations_on_conflict", - "description": "on_conflict condition type for table \"localisations\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "localisations_constraint", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "description", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "localisations_update_column", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "hero_image_url", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "localisations_order_by", - "description": "Ordering options when selecting data from \"localisations\".", - "fields": null, - "inputFields": [ + }, { - "name": "app_metadata", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata_id", + "name": "locale", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "meta_tag_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hero_image_url", + "name": "short_name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "showcase_img_urls", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "meta_tag_image_url", + "name": "world_app_button_text", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "world_app_description", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "localisations_aggregate", + "description": "aggregated selection of \"localisations\"", + "fields": [ { - "name": "short_name", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "localisations_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "showcase_img_urls", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "updated_at", + "name": "arguments", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", + "name": "distinct", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -45612,37 +46496,26 @@ "deprecationReason": null }, { - "name": "world_app_description", + "name": "filter", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "localisations_pk_columns_input", - "description": "primary key columns input for table: localisations", - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "predicate", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null } }, @@ -45656,106 +46529,101 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "localisations_select_column", - "description": "select columns of table \"localisations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_metadata_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hero_image_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "meta_tag_image_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "short_name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showcase_img_urls", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "localisations_aggregate_fields", + "description": "aggregate fields of \"localisations\"", + "fields": [ { - "name": "updated_at", - "description": "column name", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_button_text", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "localisations_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_app_description", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "localisations_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "localisations_set_input", - "description": "input type for updating data in table \"localisations\"", + "name": "localisations_aggregate_order_by", + "description": "order by aggregate values of table \"localisations\"", "fields": null, "inputFields": [ { - "name": "app_metadata_id", + "name": "count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -45763,11 +46631,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "max", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "localisations_max_order_by", "ofType": null }, "defaultValue": null, @@ -45775,25 +46643,183 @@ "deprecationReason": null }, { - "name": "description", + "name": "min", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "localisations_min_order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "hero_image_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"localisations\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "description": "Boolean expression to filter rows from the table \"localisations\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_metadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_metadata_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hero_image_url", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null @@ -45802,8 +46828,8 @@ "name": "id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45814,8 +46840,8 @@ "name": "locale", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45826,8 +46852,8 @@ "name": "meta_tag_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45838,8 +46864,8 @@ "name": "name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45850,8 +46876,8 @@ "name": "short_name", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45862,17 +46888,9 @@ "name": "showcase_img_urls", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "String_array_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -45882,8 +46900,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45894,8 +46912,8 @@ "name": "world_app_button_text", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45906,8 +46924,8 @@ "name": "world_app_description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -45920,50 +46938,46 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "localisations_stream_cursor_input", - "description": "Streaming cursor of the table \"localisations\"", + "kind": "ENUM", + "name": "localisations_constraint", + "description": "unique or primary key constraints on table \"localisations\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, + "name": "localisations_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, + "name": "unique_app_metadata_locale", + "description": "unique or primary key constraint on columns \"locale\", \"app_metadata_id\"", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "localisations_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "localisations_insert_input", + "description": "input type for inserting data into table \"localisations\"", "fields": null, "inputFields": [ + { + "name": "app_metadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "app_metadata_id", "description": null, @@ -46134,106 +47148,192 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "localisations_update_column", - "description": "update columns of table \"localisations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "localisations_max_fields", + "description": "aggregate max on columns", + "fields": [ { "name": "app_metadata_id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "description", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "hero_image_url", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "locale", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "meta_tag_image_url", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "name", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "short_name", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "showcase_img_urls", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_button_text", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { "name": "world_app_description", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "localisations_updates", - "description": null, + "name": "localisations_max_order_by", + "description": "order by max() on columns of table \"localisations\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "app_metadata_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_set_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46241,267 +47341,119 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "created_at", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "membership", - "description": "columns and relationships of \"membership\"", - "fields": [ + }, { - "name": "created_at", + "name": "description", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "hero_image_url", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "role_enum", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", - "args": [], + "name": "locale", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "meta_tag_image_url", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "name", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "user", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "membership_aggregate", - "description": "aggregated selection of \"membership\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "membership_aggregate_fields", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", + "name": "short_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_bool_exp_count", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "showcase_img_urls", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46509,11 +47461,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "world_app_button_text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46521,16 +47473,12 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "world_app_description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -46543,223 +47491,121 @@ }, { "kind": "OBJECT", - "name": "membership_aggregate_fields", - "description": "aggregate fields of \"membership\"", + "name": "localisations_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "count", + "name": "app_metadata_id", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "membership_max_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "description", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "membership_min_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_order_by", - "description": "order by aggregate values of table \"membership\"", - "fields": null, - "inputFields": [ + }, { - "name": "count", + "name": "hero_image_url", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "membership_max_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "locale", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "membership_min_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"membership\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "meta_tag_image_url", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "membership_on_conflict", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "description": "Boolean expression to filter rows from the table \"membership\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", + "name": "name", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "short_name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", + "name": "showcase_img_urls", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -46767,58 +47613,69 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "world_app_button_text", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "world_app_description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "role_enum_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_min_order_by", + "description": "order by min() on columns of table \"localisations\"", + "fields": null, + "inputFields": [ { - "name": "team", + "name": "app_metadata_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46826,11 +47683,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46838,11 +47695,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "description", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46850,11 +47707,11 @@ "deprecationReason": null }, { - "name": "user", + "name": "hero_image_url", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46862,51 +47719,23 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "membership_constraint", - "description": "unique or primary key constraints on table \"membership\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "membership_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_insert_input", - "description": "input type for inserting data into table \"membership\"", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "locale", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46914,11 +47743,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "meta_tag_image_url", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46926,11 +47755,11 @@ "deprecationReason": null }, { - "name": "role", + "name": "name", "description": null, "type": { "kind": "ENUM", - "name": "role_enum", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46938,11 +47767,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "short_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46950,11 +47779,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "showcase_img_urls", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46965,8 +47794,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46974,11 +47803,11 @@ "deprecationReason": null }, { - "name": "user", + "name": "world_app_button_text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_obj_rel_insert_input", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -46986,11 +47815,11 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "world_app_description", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -47004,65 +47833,45 @@ }, { "kind": "OBJECT", - "name": "membership_max_fields", - "description": "aggregate max on columns", + "name": "localisations_mutation_response", + "description": "response of any mutation on the table \"localisations\"", "fields": [ { - "name": "created_at", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -47075,64 +47884,56 @@ }, { "kind": "INPUT_OBJECT", - "name": "membership_max_order_by", - "description": "order by max() on columns of table \"membership\"", + "name": "localisations_on_conflict", + "description": "on_conflict condition type for table \"localisations\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", + "name": "constraint", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "update_columns", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, @@ -47144,89 +47945,18 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "membership_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "membership_min_order_by", - "description": "order by min() on columns of table \"membership\"", + "name": "localisations_order_by", + "description": "Ordering options when selecting data from \"localisations\".", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "app_metadata", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "app_metadata_order_by", "ofType": null }, "defaultValue": null, @@ -47234,7 +47964,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "app_metadata_id", "description": null, "type": { "kind": "ENUM", @@ -47246,7 +47976,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -47258,7 +47988,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "description", "description": null, "type": { "kind": "ENUM", @@ -47270,7 +48000,7 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "hero_image_url", "description": null, "type": { "kind": "ENUM", @@ -47280,134 +48010,21 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "membership_mutation_response", - "description": "response of any mutation on the table \"membership\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_on_conflict", - "description": "on_conflict condition type for table \"membership\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_constraint", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "where", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "description": "Ordering options when selecting data from \"membership\".", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "locale", "description": null, "type": { "kind": "ENUM", @@ -47419,7 +48036,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "meta_tag_image_url", "description": null, "type": { "kind": "ENUM", @@ -47431,7 +48048,7 @@ "deprecationReason": null }, { - "name": "role", + "name": "name", "description": null, "type": { "kind": "ENUM", @@ -47443,11 +48060,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "short_name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -47455,7 +48072,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "showcase_img_urls", "description": null, "type": { "kind": "ENUM", @@ -47479,11 +48096,11 @@ "deprecationReason": null }, { - "name": "user", + "name": "world_app_button_text", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -47491,7 +48108,7 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "world_app_description", "description": null, "type": { "kind": "ENUM", @@ -47509,8 +48126,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "membership_pk_columns_input", - "description": "primary key columns input for table: membership", + "name": "localisations_pk_columns_input", + "description": "primary key columns input for table: localisations", "fields": null, "inputFields": [ { @@ -47536,18 +48153,36 @@ }, { "kind": "ENUM", - "name": "membership_select_column", - "description": "select columns of table \"membership\"", + "name": "localisations_select_column", + "description": "select columns of table \"localisations\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ + { + "name": "app_metadata_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, + { + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hero_image_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "column name", @@ -47555,13 +48190,31 @@ "deprecationReason": null }, { - "name": "role", + "name": "locale", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "meta_tag_image_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "short_name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showcase_img_urls", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -47573,7 +48226,13 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "world_app_button_text", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_app_description", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -47583,16 +48242,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "membership_set_input", - "description": "input type for updating data in table \"membership\"", + "name": "localisations_set_input", + "description": "input type for updating data in table \"localisations\"", "fields": null, "inputFields": [ { - "name": "created_at", + "name": "app_metadata_id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47600,11 +48259,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -47612,11 +48271,11 @@ "deprecationReason": null }, { - "name": "role", + "name": "description", "description": null, "type": { - "kind": "ENUM", - "name": "role_enum", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47624,7 +48283,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "hero_image_url", "description": null, "type": { "kind": "SCALAR", @@ -47636,11 +48295,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47648,7 +48307,7 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "locale", "description": null, "type": { "kind": "SCALAR", @@ -47658,63 +48317,25 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_stream_cursor_input", - "description": "Streaming cursor of the table \"membership\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "meta_tag_image_url", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "membership_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47722,7 +48343,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "short_name", "description": null, "type": { "kind": "SCALAR", @@ -47734,23 +48355,31 @@ "deprecationReason": null }, { - "name": "role", + "name": "showcase_img_urls", "description": null, "type": { - "kind": "ENUM", - "name": "role_enum", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -47758,11 +48387,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "world_app_button_text", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47770,7 +48399,7 @@ "deprecationReason": null }, { - "name": "user_id", + "name": "world_app_description", "description": null, "type": { "kind": "SCALAR", @@ -47786,82 +48415,35 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "membership_update_column", - "description": "update columns of table \"membership\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "membership_updates", - "description": null, + "name": "localisations_stream_cursor_input", + "description": "Streaming cursor of the table \"localisations\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "membership_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -47874,12 +48456,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "merge_world_id_accounts_args", - "description": null, + "name": "localisations_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "_current_user_id", + "name": "app_metadata_id", "description": null, "type": { "kind": "SCALAR", @@ -47891,11 +48473,11 @@ "deprecationReason": null }, { - "name": "_legacy_user_id", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -47903,7 +48485,7 @@ "deprecationReason": null }, { - "name": "_world_id_nullifier", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -47913,955 +48495,584 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "mutation_root", - "description": "mutation root", - "fields": [ + }, { - "name": "accept_team_invite", - "description": "execute VOLATILE function \"accept_team_invite\" which returns \"membership\"", - "args": [ - { - "name": "args", - "description": "input parameters for function \"accept_team_invite\"", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "accept_team_invite_args", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "hero_image_url", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ban_app", - "description": "Bans app by app_id", - "args": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BanAppOutput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "change_app_report_status", - "description": "Closes the report with a decision", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeAppReportStatusInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "locale", + "description": null, "type": { - "kind": "OBJECT", - "name": "ChangeAppReportStatusOutput", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create_app_report", - "description": "Creates an app report", - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAppReportInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "meta_tag_image_url", + "description": null, "type": { - "kind": "OBJECT", - "name": "CreateAppReportOutput", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create_new_draft", + "name": "name", "description": null, - "args": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "CreateNewDraftOutput", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action", - "description": "delete data from the table: \"action\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "short_name", + "description": null, "type": { - "kind": "OBJECT", - "name": "action_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action_by_pk", - "description": "delete single row from the table: \"action\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "showcase_img_urls", + "description": null, "type": { - "kind": "OBJECT", - "name": "action", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action_stats_returning", - "description": "delete data from the table: \"action_stats_returning\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "action_stats_returning_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action_stats_returning_by_pk", - "description": "delete single row from the table: \"action_stats_returning\"", - "args": [ - { - "name": "action_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "world_app_button_text", + "description": null, "type": { - "kind": "OBJECT", - "name": "action_stats_returning", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action_v4", - "description": "delete data from the table: \"action_v4\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "world_app_description", + "description": null, "type": { - "kind": "OBJECT", - "name": "action_v4_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "localisations_update_column", + "description": "update columns of table \"localisations\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_metadata_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_action_v4_by_pk", - "description": "delete single row from the table: \"action_v4\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "action_v4", - "ofType": null - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_api_key", - "description": "delete data from the table: \"api_key\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hero_image_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "meta_tag_image_url", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "short_name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showcase_img_urls", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_app_button_text", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_app_description", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "localisations_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "OBJECT", - "name": "api_key_mutation_response", + "kind": "INPUT_OBJECT", + "name": "localisations_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_api_key_by_pk", - "description": "delete single row from the table: \"api_key\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership", + "description": "columns and relationships of \"membership\"", + "fields": [ + { + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "api_key", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app", - "description": "delete data from the table: \"app\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "app_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_by_pk", - "description": "delete single row from the table: \"app\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "role", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "app", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "role_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_daily_users", - "description": "delete data from the table: \"app_daily_users\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "app_daily_users_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_daily_users_by_pk", - "description": "delete single row from the table: \"app_daily_users\"", - "args": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "app_daily_users", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_metadata", - "description": "delete data from the table: \"app_metadata\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_metadata_by_pk", - "description": "delete single row from the table: \"app_metadata\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user", + "description": "An object relationship", + "args": [], "type": { - "kind": "OBJECT", - "name": "app_metadata", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "user", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_rankings", - "description": "delete data from the table: \"app_rankings\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership_aggregate", + "description": "aggregated selection of \"membership\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "app_rankings_mutation_response", + "name": "membership_aggregate_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_rankings_by_pk", - "description": "delete single row from the table: \"app_rankings\"", - "args": [ - { - "name": "id", - "description": null, - "type": { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "membership", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "app_rankings", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delete_app_report", - "description": "delete data from the table: \"app_report\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_mutation_response", + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_bool_exp_count", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delete_app_report_appeal", - "description": "delete data from the table: \"app_report_appeal\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "arguments", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_appeal_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_report_appeal_by_pk", - "description": "delete single row from the table: \"app_report_appeal\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "distinct", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_appeal", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_report_by_pk", - "description": "delete single row from the table: \"app_report\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "filter", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report", + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_reviews", - "description": "delete data from the table: \"app_reviews\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "predicate", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_reviews_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership_aggregate_fields", + "description": "aggregate fields of \"membership\"", + "fields": [ { - "name": "delete_app_reviews_by_pk", - "description": "delete single row from the table: \"app_reviews\"", + "name": "count", + "description": null, "args": [ { - "name": "id", + "name": "columns", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "app_reviews", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_app_stats", - "description": "delete data from the table: \"app_stats\"", - "args": [ + }, { - "name": "where", - "description": "filter the rows which have to be deleted", + "name": "distinct", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -48869,2174 +49080,1379 @@ } ], "type": { - "kind": "OBJECT", - "name": "app_stats_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_app_stats_by_pk", - "description": "delete single row from the table: \"app_stats\"", - "args": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "max", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "app_stats", + "name": "membership_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_auth_code", - "description": "delete data from the table: \"auth_code\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "min", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "auth_code_mutation_response", + "name": "membership_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_order_by", + "description": "order by aggregate values of table \"membership\"", + "fields": null, + "inputFields": [ { - "name": "delete_auth_code_by_pk", - "description": "delete single row from the table: \"auth_code\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "count", + "description": null, "type": { - "kind": "OBJECT", - "name": "auth_code", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_cache", - "description": "delete data from the table: \"cache\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "max", + "description": null, "type": { - "kind": "OBJECT", - "name": "cache_mutation_response", + "kind": "INPUT_OBJECT", + "name": "membership_max_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_cache_by_pk", - "description": "delete single row from the table: \"cache\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "min", + "description": null, "type": { - "kind": "OBJECT", - "name": "cache", + "kind": "INPUT_OBJECT", + "name": "membership_min_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"membership\"", + "fields": null, + "inputFields": [ { - "name": "delete_invite", - "description": "delete data from the table: \"invite\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "membership_insert_input", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "invite_mutation_response", - "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_invite_by_pk", - "description": "delete single row from the table: \"invite\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "invite", + "kind": "INPUT_OBJECT", + "name": "membership_on_conflict", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "description": "Boolean expression to filter rows from the table \"membership\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "delete_jwks", - "description": "delete data from the table: \"jwks\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "_and", + "description": null, "type": { - "kind": "OBJECT", - "name": "jwks_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_jwks_by_pk", - "description": "delete single row from the table: \"jwks\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "jwks", + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_localisations", - "description": "delete data from the table: \"localisations\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "_or", + "description": null, "type": { - "kind": "OBJECT", - "name": "localisations_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_localisations_by_pk", - "description": "delete single row from the table: \"localisations\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "localisations", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_membership", - "description": "delete data from the table: \"membership\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "membership_mutation_response", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_membership_by_pk", - "description": "delete single row from the table: \"membership\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "role", + "description": null, "type": { - "kind": "OBJECT", - "name": "membership", + "kind": "INPUT_OBJECT", + "name": "role_enum_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_notification_log", - "description": "delete data from the table: \"notification_log\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team", + "description": null, "type": { - "kind": "OBJECT", - "name": "notification_log_mutation_response", + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_notification_log_by_pk", - "description": "delete single row from the table: \"notification_log\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "notification_log", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_notification_log_wallet_address", - "description": "delete data from the table: \"notification_log_wallet_address\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "notification_log_wallet_address_mutation_response", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_notification_log_wallet_address_by_pk", - "description": "delete single row from the table: \"notification_log_wallet_address\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user", + "description": null, "type": { - "kind": "OBJECT", - "name": "notification_log_wallet_address", + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_nullifier", - "description": "delete data from the table: \"nullifier\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier_mutation_response", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "membership_constraint", + "description": "unique or primary key constraints on table \"membership\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "delete_nullifier_by_pk", - "description": "delete single row from the table: \"nullifier\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "membership_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_insert_input", + "description": "input type for inserting data into table \"membership\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_nullifier_uses_seen", - "description": "delete data from the table: \"nullifier_uses_seen\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_nullifier_uses_seen_by_pk", - "description": "delete single row from the table: \"nullifier_uses_seen\"", - "args": [ - { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "role", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen", + "kind": "ENUM", + "name": "role_enum", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_nullifier_v4", - "description": "delete data from the table: \"nullifier_v4\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier_v4_mutation_response", + "kind": "INPUT_OBJECT", + "name": "team_obj_rel_insert_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_nullifier_v4_by_pk", - "description": "delete single row from the table: \"nullifier_v4\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "nullifier_v4", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_redirect", - "description": "delete data from the table: \"redirect\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "redirect_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_redirect_by_pk", - "description": "delete single row from the table: \"redirect\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user", + "description": null, "type": { - "kind": "OBJECT", - "name": "redirect", + "kind": "INPUT_OBJECT", + "name": "user_obj_rel_insert_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_role", - "description": "delete data from the table: \"role\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "role_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "role_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "delete_role_by_pk", - "description": "delete single row from the table: \"role\"", - "args": [ - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "role", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_rp_registration", - "description": "delete data from the table: \"rp_registration\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "rp_registration_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_rp_registration_by_pk", - "description": "delete single row from the table: \"rp_registration\"", - "args": [ - { - "name": "rp_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "rp_registration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_sandbox_access_request", - "description": "delete data from the table: \"sandbox_access_request\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "sandbox_access_request_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_sandbox_access_request_by_pk", - "description": "delete single row from the table: \"sandbox_access_request\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "sandbox_access_request", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_max_order_by", + "description": "order by max() on columns of table \"membership\"", + "fields": null, + "inputFields": [ { - "name": "delete_team", - "description": "delete data from the table: \"team\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "team_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_team_by_pk", - "description": "delete single row from the table: \"team\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "team", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_unverified_images", + "name": "team_id", "description": null, - "args": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "DeleteImageOutput", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_user", - "description": "delete data from the table: \"user\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "user_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete_user_by_pk", - "description": "delete single row from the table: \"user\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "user", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "insert_action", - "description": "insert data into the table: \"action\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "action_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_action_one", - "description": "insert a single row into the table: \"action\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "action", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_action_stats_returning", - "description": "insert data into the table: \"action_stats_returning\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_action_stats_returning_one", - "description": "insert a single row into the table: \"action_stats_returning\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "action_stats_returning", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_action_v4", - "description": "insert data into the table: \"action_v4\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_v4_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "action_v4_mutation_response", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_min_order_by", + "description": "order by min() on columns of table \"membership\"", + "fields": null, + "inputFields": [ { - "name": "insert_action_v4_one", - "description": "insert a single row into the table: \"action_v4\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_v4_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "action_v4", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_api_key", - "description": "insert data into the table: \"api_key\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "api_key_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_api_key_one", - "description": "insert a single row into the table: \"api_key\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "api_key", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app", - "description": "insert data into the table: \"app\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_daily_users", - "description": "insert data into the table: \"app_daily_users\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_daily_users_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "membership_mutation_response", + "description": "response of any mutation on the table \"membership\"", + "fields": [ + { + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_daily_users_one", - "description": "insert a single row into the table: \"app_daily_users\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_insert_input", + "kind": "OBJECT", + "name": "membership", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_on_conflict", + "description": "on_conflict condition type for table \"membership\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_daily_users", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_constraint", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_metadata", - "description": "insert data into the table: \"app_metadata\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_insert_input", - "ofType": null - } - } + "kind": "ENUM", + "name": "membership_update_column", + "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_metadata_mutation_response", + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", + "description": "Ordering options when selecting data from \"membership\".", + "fields": null, + "inputFields": [ { - "name": "insert_app_metadata_one", - "description": "insert a single row into the table: \"app_metadata\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_metadata", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_one", - "description": "insert a single row into the table: \"app\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_rankings", - "description": "insert data into the table: \"app_rankings\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "role", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_rankings_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_rankings_one", - "description": "insert a single row into the table: \"app_rankings\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_rankings", + "kind": "INPUT_OBJECT", + "name": "team_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_report", - "description": "insert data into the table: \"app_report\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_report_appeal", - "description": "insert data into the table: \"app_report_appeal\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_appeal_mutation_response", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_report_appeal_one", - "description": "insert a single row into the table: \"app_report_appeal\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report_appeal", + "kind": "INPUT_OBJECT", + "name": "user_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_report_one", - "description": "insert a single row into the table: \"app_report\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "user_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_report", + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_pk_columns_input", + "description": "primary key columns input for table: membership", + "fields": null, + "inputFields": [ { - "name": "insert_app_reviews", - "description": "insert data into the table: \"app_reviews\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "membership_select_column", + "description": "select columns of table \"membership\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_set_input", + "description": "input type for updating data in table \"membership\"", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_reviews_mutation_response", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_reviews_one", - "description": "insert a single row into the table: \"app_reviews\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_reviews", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_stats", - "description": "insert data into the table: \"app_stats\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "role", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_stats_mutation_response", + "kind": "ENUM", + "name": "role_enum", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_app_stats_one", - "description": "insert a single row into the table: \"app_stats\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_insert_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "team_id", + "description": null, "type": { - "kind": "OBJECT", - "name": "app_stats", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_auth_code", - "description": "insert data into the table: \"auth_code\"", + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_stream_cursor_input", + "description": "Streaming cursor of the table \"membership\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "ENUM", + "name": "role_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "membership_update_column", + "description": "update columns of table \"membership\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "membership_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "merge_world_id_accounts_args", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_current_user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_legacy_user_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_world_id_nullifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "mutation_root", + "description": "mutation root", + "fields": [ + { + "name": "accept_team_invite", + "description": "execute VOLATILE function \"accept_team_invite\" which returns \"membership\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "args", + "description": "input parameters for function \"accept_team_invite\"", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "accept_team_invite_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_insert_input", - "ofType": null - } + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null } } }, @@ -51045,40 +50461,43 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_on_conflict", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_code_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_code_one", - "description": "insert a single row into the table: \"auth_code\"", - "args": [ + }, { - "name": "object", - "description": "the row to be inserted", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_insert_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", + "ofType": null + } } }, "defaultValue": null, @@ -51086,11 +50505,11 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "where", + "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_on_conflict", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -51099,165 +50518,129 @@ } ], "type": { - "kind": "OBJECT", - "name": "auth_code", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "membership", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_cache", - "description": "insert data into the table: \"cache\"", + "name": "ban_app", + "description": "Bans app by app_id", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "cache_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "cache_mutation_response", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BanAppOutput", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_cache_one", - "description": "insert a single row into the table: \"cache\"", + "name": "change_app_report_status", + "description": "Closes the report with a decision", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "input", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "cache_insert_input", + "name": "ChangeAppReportStatusInput", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "cache_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "cache", + "name": "ChangeAppReportStatusOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_invite", - "description": "insert data into the table: \"invite\"", + "name": "create_app_report", + "description": "Creates an app report", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "input", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CreateAppReportInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "invite_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "invite_mutation_response", + "name": "CreateAppReportOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_invite_one", - "description": "insert a single row into the table: \"invite\"", + "name": "create_new_draft", + "description": null, "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51266,12 +50649,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "team_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "invite_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -51280,47 +50667,56 @@ ], "type": { "kind": "OBJECT", - "name": "invite", + "name": "CreateNewDraftOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_jwks", - "description": "insert data into the table: \"jwks\"", + "name": "delete_action", + "description": "delete data from the table: \"action\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "jwks_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "action_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_action_by_pk", + "description": "delete single row from the table: \"action\"", + "args": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -51329,75 +50725,55 @@ ], "type": { "kind": "OBJECT", - "name": "jwks_mutation_response", + "name": "action", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_jwks_one", - "description": "insert a single row into the table: \"jwks\"", + "name": "delete_action_legacy_stats_daily", + "description": "delete data from the table: \"action_legacy_stats_daily\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_insert_input", + "name": "action_legacy_stats_daily_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "jwks", + "name": "action_legacy_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_localisations", - "description": "insert data into the table: \"localisations\"", + "name": "delete_action_legacy_stats_daily_by_pk", + "description": "delete single row from the table: \"action_legacy_stats_daily\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "action_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -51405,12 +50781,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "date_utc", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -51419,255 +50799,171 @@ ], "type": { "kind": "OBJECT", - "name": "localisations_mutation_response", + "name": "action_legacy_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_localisations_one", - "description": "insert a single row into the table: \"localisations\"", + "name": "delete_action_stats_returning", + "description": "delete data from the table: \"action_stats_returning\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_insert_input", + "name": "action_stats_returning_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "localisations", + "name": "action_stats_returning_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_membership", - "description": "insert data into the table: \"membership\"", + "name": "delete_action_stats_returning_by_pk", + "description": "delete single row from the table: \"action_stats_returning\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "action_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "membership_mutation_response", + "name": "action_stats_returning", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_membership_one", - "description": "insert a single row into the table: \"membership\"", + "name": "delete_action_v4", + "description": "delete data from the table: \"action_v4\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_insert_input", + "name": "action_v4_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "membership", + "name": "action_v4_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_notification_log", - "description": "insert data into the table: \"notification_log\"", + "name": "delete_action_v4_by_pk", + "description": "delete single row from the table: \"action_v4\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "notification_log_mutation_response", + "name": "action_v4", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_notification_log_one", - "description": "insert a single row into the table: \"notification_log\"", + "name": "delete_action_v4_stats_daily", + "description": "delete data from the table: \"action_v4_stats_daily\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_insert_input", + "name": "action_v4_stats_daily_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "notification_log", + "name": "action_v4_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_notification_log_wallet_address", - "description": "insert data into the table: \"notification_log_wallet_address\"", + "name": "delete_action_v4_stats_daily_by_pk", + "description": "delete single row from the table: \"action_v4_stats_daily\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "action_v4_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -51675,12 +50971,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "date_utc", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -51689,255 +50989,171 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address_mutation_response", + "name": "action_v4_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_notification_log_wallet_address_one", - "description": "insert a single row into the table: \"notification_log_wallet_address\"", + "name": "delete_api_key", + "description": "delete data from the table: \"api_key\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_insert_input", + "name": "api_key_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "api_key_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier", - "description": "insert data into the table: \"nullifier\"", + "name": "delete_api_key_by_pk", + "description": "delete single row from the table: \"api_key\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_mutation_response", + "name": "api_key", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier_one", - "description": "insert a single row into the table: \"nullifier\"", + "name": "delete_app", + "description": "delete data from the table: \"app\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_insert_input", + "name": "app_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier", + "name": "app_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier_uses_seen", - "description": "insert data into the table: \"nullifier_uses_seen\"", + "name": "delete_app_by_pk", + "description": "delete single row from the table: \"app\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen_mutation_response", + "name": "app", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier_uses_seen_one", - "description": "insert a single row into the table: \"nullifier_uses_seen\"", + "name": "delete_app_daily_users", + "description": "delete data from the table: \"app_daily_users\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_insert_input", + "name": "app_daily_users_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "app_daily_users_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier_v4", - "description": "insert data into the table: \"nullifier_v4\"", + "name": "delete_app_daily_users_by_pk", + "description": "delete single row from the table: \"app_daily_users\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -51945,12 +51161,32 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "date", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -51959,219 +51195,172 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier_v4_mutation_response", + "name": "app_daily_users", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_nullifier_v4_one", - "description": "insert a single row into the table: \"nullifier_v4\"", + "name": "delete_app_metadata", + "description": "delete data from the table: \"app_metadata\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_insert_input", + "name": "app_metadata_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "app_metadata_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_redirect", - "description": "insert data into the table: \"redirect\"", + "name": "delete_app_metadata_by_pk", + "description": "delete single row from the table: \"app_metadata\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "redirect_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "redirect_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "redirect_mutation_response", + "name": "app_metadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_redirect_one", - "description": "insert a single row into the table: \"redirect\"", + "name": "delete_app_rankings", + "description": "delete data from the table: \"app_rankings\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_insert_input", + "name": "app_rankings_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "redirect_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "redirect", + "name": "app_rankings_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_role", - "description": "insert data into the table: \"role\"", + "name": "delete_app_rankings_by_pk", + "description": "delete single row from the table: \"app_rankings\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "role_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "role_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "role_mutation_response", + "name": "app_rankings", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_role_one", - "description": "insert a single row into the table: \"role\"", + "name": "delete_app_report", + "description": "delete data from the table: \"app_report\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_insert_input", + "name": "app_report_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_report_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_app_report_appeal", + "description": "delete data from the table: \"app_report_appeal\"", + "args": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { - "kind": "INPUT_OBJECT", - "name": "role_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -52180,47 +51369,56 @@ ], "type": { "kind": "OBJECT", - "name": "role", + "name": "app_report_appeal_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_rp_registration", - "description": "insert data into the table: \"rp_registration\"", + "name": "delete_app_report_appeal_by_pk", + "description": "delete single row from the table: \"app_report_appeal\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_report_appeal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_app_report_by_pk", + "description": "delete single row from the table: \"app_report\"", + "args": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -52229,165 +51427,113 @@ ], "type": { "kind": "OBJECT", - "name": "rp_registration_mutation_response", + "name": "app_report", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_rp_registration_one", - "description": "insert a single row into the table: \"rp_registration\"", + "name": "delete_app_reviews", + "description": "delete data from the table: \"app_reviews\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "rp_registration_insert_input", + "name": "app_reviews_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "rp_registration", + "name": "app_reviews_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_sandbox_access_request", - "description": "insert data into the table: \"sandbox_access_request\"", + "name": "delete_app_reviews_by_pk", + "description": "delete single row from the table: \"app_reviews\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "sandbox_access_request_mutation_response", + "name": "app_reviews", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_sandbox_access_request_one", - "description": "insert a single row into the table: \"sandbox_access_request\"", + "name": "delete_app_stats", + "description": "delete data from the table: \"app_stats\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_insert_input", + "name": "app_stats_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "app_stats_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_team", - "description": "insert data into the table: \"team\"", + "name": "delete_app_stats_by_pk", + "description": "delete single row from the table: \"app_stats\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_insert_input", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -52395,12 +51541,16 @@ "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", + "name": "date", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -52409,39 +51559,56 @@ ], "type": { "kind": "OBJECT", - "name": "team_mutation_response", + "name": "app_stats", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_team_one", - "description": "insert a single row into the table: \"team\"", + "name": "delete_auth_code", + "description": "delete data from the table: \"auth_code\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_insert_input", + "name": "auth_code_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_code_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_auth_code_by_pk", + "description": "delete single row from the table: \"auth_code\"", + "args": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -52450,47 +51617,56 @@ ], "type": { "kind": "OBJECT", - "name": "team", + "name": "auth_code", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_user", - "description": "insert data into the table: \"user\"", + "name": "delete_cache", + "description": "delete data from the table: \"cache\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_insert_input", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "cache_bool_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "cache_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_cache_by_pk", + "description": "delete single row from the table: \"cache\"", + "args": [ { - "name": "on_conflict", - "description": "upsert condition", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_on_conflict", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -52499,91 +51675,105 @@ ], "type": { "kind": "OBJECT", - "name": "user_mutation_response", + "name": "cache", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_user_one", - "description": "insert a single row into the table: \"user\"", + "name": "delete_invite", + "description": "delete data from the table: \"invite\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_insert_input", + "name": "invite_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "user_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "user", + "name": "invite_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "invalidate_cache", - "description": null, - "args": [], + "name": "delete_invite_by_pk", + "description": "delete single row from the table: \"invite\"", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "InvalidateCacheOutput", + "name": "invite", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "invite_team_members", - "description": "Create invites and send emails", + "name": "delete_jwks", + "description": "delete data from the table: \"jwks\"", "args": [ { - "name": "emails", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "jwks_bool_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "jwks_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_jwks_by_pk", + "description": "delete single row from the table: \"jwks\"", + "args": [ { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -52601,135 +51791,105 @@ ], "type": { "kind": "OBJECT", - "name": "InviteTeamMembersOutput", + "name": "jwks", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "merge_world_id_accounts", - "description": "execute VOLATILE function \"merge_world_id_accounts\" which returns \"user\"", + "name": "delete_localisations", + "description": "delete data from the table: \"localisations\"", "args": [ { - "name": "args", - "description": "input parameters for function \"merge_world_id_accounts\"", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "merge_world_id_accounts_args", + "name": "localisations_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "localisations_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_localisations_by_pk", + "description": "delete single row from the table: \"localisations\"", + "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "user_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_membership", + "description": "delete data from the table: \"membership\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_order_by", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "user", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "membership_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "register_rp", - "description": "Register an RP (Relying Party) for an app with managed mode", + "name": "delete_membership_by_pk", + "description": "delete single row from the table: \"membership\"", "args": [ { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -52743,62 +51903,51 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "mode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signer_address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "RegisterRpOutput", + "name": "membership", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reset_api_key", - "description": "Reset the given API key for the developer portal", + "name": "delete_notification_log", + "description": "delete data from the table: \"notification_log\"", "args": [ { - "name": "id", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "notification_log_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "notification_log_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_notification_log_by_pk", + "description": "delete single row from the table: \"notification_log\"", + "args": [ { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -52816,34 +51965,47 @@ ], "type": { "kind": "OBJECT", - "name": "ResetAPIOutput", + "name": "notification_log", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reset_client_secret", - "description": "Reset the client secret for a Sign in with World ID application", + "name": "delete_notification_log_wallet_address", + "description": "delete data from the table: \"notification_log_wallet_address\"", "args": [ { - "name": "app_id", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "notification_log_wallet_address_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_notification_log_wallet_address_by_pk", + "description": "delete single row from the table: \"notification_log_wallet_address\"", + "args": [ { - "name": "team_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -52861,34 +52023,47 @@ ], "type": { "kind": "OBJECT", - "name": "ResetClientOutput", + "name": "notification_log_wallet_address", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "retry_rp", - "description": "Retry RP registration sync for a specific environment", + "name": "delete_nullifier", + "description": "delete data from the table: \"nullifier\"", "args": [ { - "name": "environment", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "nullifier_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "nullifier_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_nullifier_by_pk", + "description": "delete single row from the table: \"nullifier\"", + "args": [ { - "name": "rp_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -52906,147 +52081,105 @@ ], "type": { "kind": "OBJECT", - "name": "RetryRpOutput", + "name": "nullifier", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rollup_app_stats", - "description": "execute VOLATILE function \"rollup_app_stats\" which returns \"app_stats\"", + "name": "delete_nullifier_uses_seen", + "description": "delete data from the table: \"nullifier_uses_seen\"", "args": [ { - "name": "args", - "description": "input parameters for function \"rollup_app_stats\"", - "type": { - "kind": "INPUT_OBJECT", - "name": "rollup_app_stats_args", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_stats_select_column", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "nullifier_uses_seen_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_nullifier_uses_seen_by_pk", + "description": "delete single row from the table: \"nullifier_uses_seen\"", + "args": [ { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "nullifier_hash", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_stats", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "nullifier_uses_seen", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rotate_signer_key", - "description": "Rotate the signer key for an RP (Relying Party)", + "name": "delete_nullifier_v4", + "description": "delete data from the table: \"nullifier_v4\"", "args": [ { - "name": "app_id", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_nullifier_v4_by_pk", + "description": "delete single row from the table: \"nullifier_v4\"", + "args": [ { - "name": "new_signer_address", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -53064,34 +52197,47 @@ ], "type": { "kind": "OBJECT", - "name": "RotateSignerKeyOutput", + "name": "nullifier_v4", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "switch_to_self_managed", - "description": "Switch an RP from managed to self-managed mode by transferring the on-chain manager key", + "name": "delete_redirect", + "description": "delete data from the table: \"redirect\"", "args": [ { - "name": "app_id", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "redirect_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "redirect_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete_redirect_by_pk", + "description": "delete single row from the table: \"redirect\"", + "args": [ { - "name": "new_manager_address", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -53109,25 +52255,25 @@ ], "type": { "kind": "OBJECT", - "name": "SwitchToSelfManagedOutput", + "name": "redirect", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "toggle_rp_active", - "description": "Activate or deactivate a managed RP on-chain", + "name": "delete_role", + "description": "delete data from the table: \"role\"", "args": [ { - "name": "app_id", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "role_bool_exp", "ofType": null } }, @@ -53138,18 +52284,18 @@ ], "type": { "kind": "OBJECT", - "name": "ToggleRpActiveOutput", + "name": "role_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unban_app", - "description": "Unbans an app", + "name": "delete_role_by_pk", + "description": "delete single row from the table: \"role\"", "args": [ { - "name": "app_id", + "name": "value", "description": null, "type": { "kind": "NON_NULL", @@ -53167,49 +52313,25 @@ ], "type": { "kind": "OBJECT", - "name": "UnbanAppOutput", + "name": "role", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action", - "description": "update data of the table: \"action\"", + "name": "delete_rp_registration", + "description": "delete data from the table: \"rp_registration\"", "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null } }, @@ -53220,49 +52342,25 @@ ], "type": { "kind": "OBJECT", - "name": "action_mutation_response", + "name": "rp_registration_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_by_pk", - "description": "update single row of the table: \"action\"", + "name": "delete_rp_registration_by_pk", + "description": "delete single row from the table: \"rp_registration\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "rp_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_pk_columns_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -53273,34 +52371,26 @@ ], "type": { "kind": "OBJECT", - "name": "action", + "name": "rp_registration", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_many", - "description": "update multiples rows of table: \"action\"", + "name": "delete_sandbox_access_request", + "description": "delete data from the table: \"sandbox_access_request\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_updates", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null } }, "defaultValue": null, @@ -53309,54 +52399,26 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "sandbox_access_request_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_stats_returning", - "description": "update data of the table: \"action_stats_returning\"", + "name": "delete_sandbox_access_request_by_pk", + "description": "delete single row from the table: \"sandbox_access_request\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -53367,49 +52429,25 @@ ], "type": { "kind": "OBJECT", - "name": "action_stats_returning_mutation_response", + "name": "sandbox_access_request", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_stats_returning_by_pk", - "description": "update single row of the table: \"action_stats_returning\"", + "name": "delete_team", + "description": "delete data from the table: \"team\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_pk_columns_input", + "name": "team_bool_exp", "ofType": null } }, @@ -53420,34 +52458,26 @@ ], "type": { "kind": "OBJECT", - "name": "action_stats_returning", + "name": "team_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_stats_returning_many", - "description": "update multiples rows of table: \"action_stats_returning\"", + "name": "delete_team_by_pk", + "description": "delete single row from the table: \"team\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_returning_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -53456,42 +52486,26 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action_stats_returning_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "team", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_v4", - "description": "update data of the table: \"action_v4\"", + "name": "delete_unverified_images", + "description": null, "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_v4_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -53502,37 +52516,25 @@ ], "type": { "kind": "OBJECT", - "name": "action_v4_mutation_response", + "name": "DeleteImageOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_v4_by_pk", - "description": "update single row of the table: \"action_v4\"", + "name": "delete_user", + "description": "delete data from the table: \"user\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_v4_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, + "name": "where", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_v4_pk_columns_input", + "name": "user_bool_exp", "ofType": null } }, @@ -53543,34 +52545,26 @@ ], "type": { "kind": "OBJECT", - "name": "action_v4", + "name": "user_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_action_v4_many", - "description": "update multiples rows of table: \"action_v4\"", + "name": "delete_user_by_pk", + "description": "delete single row from the table: \"user\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_v4_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -53579,42 +52573,26 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "action_v4_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "user", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_api_key", - "description": "update data of the table: \"api_key\"", + "name": "delete_world_id_app_stats_daily", + "description": "delete data from the table: \"world_id_app_stats_daily\"", "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "where", - "description": "filter the rows which have to be updated", + "description": "filter the rows which have to be deleted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null } }, @@ -53625,37 +52603,25 @@ ], "type": { "kind": "OBJECT", - "name": "api_key_mutation_response", + "name": "world_id_app_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_api_key_by_pk", - "description": "update single row of the table: \"api_key\"", + "name": "delete_world_id_app_stats_daily_by_pk", + "description": "delete single row from the table: \"world_id_app_stats_daily\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_set_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pk_columns", + "name": "date_utc", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_pk_columns_input", + "kind": "SCALAR", + "name": "date", "ofType": null } }, @@ -53666,19 +52632,19 @@ ], "type": { "kind": "OBJECT", - "name": "api_key", + "name": "world_id_app_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_api_key_many", - "description": "update multiples rows of table: \"api_key\"", + "name": "insert_action", + "description": "insert data into the table: \"action\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -53690,7 +52656,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_updates", + "name": "action_insert_input", "ofType": null } } @@ -53699,153 +52665,194 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "api_key_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "action_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app", - "description": "update data of the table: \"app\"", + "name": "insert_action_legacy_stats_daily", + "description": "insert data into the table: \"action_legacy_stats_daily\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_set_input", + "name": "action_legacy_stats_daily_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_mutation_response", + "name": "action_legacy_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_by_pk", - "description": "update single row of the table: \"app\"", + "name": "insert_action_legacy_stats_daily_one", + "description": "insert a single row into the table: \"action_legacy_stats_daily\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_set_input", + "name": "action_legacy_stats_daily_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_action_one", + "description": "insert a single row into the table: \"action\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_pk_columns_input", + "name": "action_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app", + "name": "action", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_daily_users", - "description": "update data of the table: \"app_daily_users\"", + "name": "insert_action_stats_returning", + "description": "insert data into the table: \"action_stats_returning\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -53854,39 +52861,39 @@ ], "type": { "kind": "OBJECT", - "name": "app_daily_users_mutation_response", + "name": "action_stats_returning_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_daily_users_by_pk", - "description": "update single row of the table: \"app_daily_users\"", + "name": "insert_action_stats_returning_one", + "description": "insert a single row into the table: \"action_stats_returning\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_daily_users_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -53895,19 +52902,19 @@ ], "type": { "kind": "OBJECT", - "name": "app_daily_users", + "name": "action_stats_returning", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_daily_users_many", - "description": "update multiples rows of table: \"app_daily_users\"", + "name": "insert_action_v4", + "description": "insert data into the table: \"action_v4\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -53919,7 +52926,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_updates", + "name": "action_v4_insert_input", "ofType": null } } @@ -53928,174 +52935,256 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_daily_users_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "action_v4_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_many", - "description": "update multiples rows of table: \"app\"", + "name": "insert_action_v4_one", + "description": "insert a single row into the table: \"action_v4\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_updates", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "action_v4_insert_input", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "action_v4", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_metadata", - "description": "update data of the table: \"app_metadata\"", + "name": "insert_action_v4_stats_daily", + "description": "insert data into the table: \"action_v4_stats_daily\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_set_input", + "name": "action_v4_stats_daily_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_action_v4_stats_daily_one", + "description": "insert a single row into the table: \"action_v4_stats_daily\"", + "args": [ { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "name": "action_v4_stats_daily_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_metadata_mutation_response", + "name": "action_v4_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_metadata_by_pk", - "description": "update single row of the table: \"app_metadata\"", + "name": "insert_api_key", + "description": "insert data into the table: \"api_key\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_metadata_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_set_input", + "name": "api_key_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "api_key_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_api_key_one", + "description": "insert a single row into the table: \"api_key\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_pk_columns_input", + "name": "api_key_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "api_key_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_metadata", + "name": "api_key", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_metadata_many", - "description": "update multiples rows of table: \"app_metadata\"", + "name": "insert_app", + "description": "insert data into the table: \"app\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54107,7 +53196,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_updates", + "name": "app_insert_input", "ofType": null } } @@ -54116,47 +53205,63 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_metadata_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "app_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_rankings", - "description": "update data of the table: \"app_rankings\"", + "name": "insert_app_daily_users", + "description": "insert data into the table: \"app_daily_users\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_daily_users_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -54165,39 +53270,39 @@ ], "type": { "kind": "OBJECT", - "name": "app_rankings_mutation_response", + "name": "app_daily_users_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_rankings_by_pk", - "description": "update single row of the table: \"app_rankings\"", + "name": "insert_app_daily_users_one", + "description": "insert a single row into the table: \"app_daily_users\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_rankings_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_daily_users_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -54206,19 +53311,19 @@ ], "type": { "kind": "OBJECT", - "name": "app_rankings", + "name": "app_daily_users", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_rankings_many", - "description": "update multiples rows of table: \"app_rankings\"", + "name": "insert_app_metadata", + "description": "insert data into the table: \"app_metadata\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54230,7 +53335,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_rankings_updates", + "name": "app_metadata_insert_input", "ofType": null } } @@ -54239,88 +53344,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_rankings_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_app_report", - "description": "update data of the table: \"app_report\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_set_input", + "name": "app_metadata_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_report_mutation_response", + "name": "app_metadata_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_report_appeal", - "description": "update data of the table: \"app_report_appeal\"", + "name": "insert_app_metadata_one", + "description": "insert a single row into the table: \"app_metadata\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_metadata_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -54329,39 +53401,39 @@ ], "type": { "kind": "OBJECT", - "name": "app_report_appeal_mutation_response", + "name": "app_metadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_report_appeal_by_pk", - "description": "update single row of the table: \"app_report_appeal\"", + "name": "insert_app_one", + "description": "insert a single row into the table: \"app\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_appeal_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -54370,19 +53442,19 @@ ], "type": { "kind": "OBJECT", - "name": "app_report_appeal", + "name": "app", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_report_appeal_many", - "description": "update multiples rows of table: \"app_report_appeal\"", + "name": "insert_app_rankings", + "description": "insert data into the table: \"app_rankings\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54394,7 +53466,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_updates", + "name": "app_rankings_insert_input", "ofType": null } } @@ -54403,47 +53475,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report_appeal_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "app_rankings_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_report_by_pk", - "description": "update single row of the table: \"app_report\"", + "name": "insert_app_rankings_one", + "description": "insert a single row into the table: \"app_rankings\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_report_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_report_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_rankings_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -54452,19 +53532,19 @@ ], "type": { "kind": "OBJECT", - "name": "app_report", + "name": "app_rankings", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_report_many", - "description": "update multiples rows of table: \"app_report\"", + "name": "insert_app_report", + "description": "insert data into the table: \"app_report\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54476,7 +53556,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_updates", + "name": "app_report_insert_input", "ofType": null } } @@ -54485,133 +53565,166 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "app_report_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_reviews", - "description": "update data of the table: \"app_reviews\"", + "name": "insert_app_report_appeal", + "description": "insert data into the table: \"app_report_appeal\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_set_input", + "name": "app_report_appeal_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_reviews_mutation_response", + "name": "app_report_appeal_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_reviews_by_pk", - "description": "update single row of the table: \"app_reviews\"", + "name": "insert_app_report_appeal_one", + "description": "insert a single row into the table: \"app_report_appeal\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_reviews_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_set_input", + "name": "app_report_appeal_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_report_appeal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_app_report_one", + "description": "insert a single row into the table: \"app_report\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_pk_columns_input", + "name": "app_report_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_reviews", + "name": "app_report", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_reviews_many", - "description": "update multiples rows of table: \"app_reviews\"", + "name": "insert_app_reviews", + "description": "insert data into the table: \"app_reviews\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54623,7 +53736,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_updates", + "name": "app_reviews_insert_input", "ofType": null } } @@ -54632,133 +53745,76 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_reviews_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_app_stats", - "description": "update data of the table: \"app_stats\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_set_input", + "name": "app_reviews_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_stats_mutation_response", + "name": "app_reviews_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_stats_by_pk", - "description": "update single row of the table: \"app_stats\"", + "name": "insert_app_reviews_one", + "description": "insert a single row into the table: \"app_reviews\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_set_input", + "name": "app_reviews_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_stats", + "name": "app_reviews", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_app_stats_many", - "description": "update multiples rows of table: \"app_stats\"", + "name": "insert_app_stats", + "description": "insert data into the table: \"app_stats\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -54770,7 +53826,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_updates", + "name": "app_stats_insert_input", "ofType": null } } @@ -54779,111 +53835,108 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_stats_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_code", - "description": "update data of the table: \"auth_code\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_append_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_at_path_input", + "name": "app_stats_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_stats_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_app_stats_one", + "description": "insert a single row into the table: \"app_stats\"", + "args": [ { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_elem_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_delete_key_input", + "name": "app_stats_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_stats", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_auth_code", + "description": "insert data into the table: \"auth_code\"", + "args": [ { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_set_input", + "name": "auth_code_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -54895,96 +53948,36 @@ "deprecationReason": null }, { - "name": "update_auth_code_by_pk", - "description": "update single row of the table: \"auth_code\"", + "name": "insert_auth_code_one", + "description": "insert a single row into the table: \"auth_code\"", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_append_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_at_path_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_elem_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_delete_key_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "auth_code_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_set_input", + "name": "auth_code_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_code_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -54996,12 +53989,12 @@ "deprecationReason": null }, { - "name": "update_auth_code_many", - "description": "update multiples rows of table: \"auth_code\"", + "name": "insert_cache", + "description": "insert data into the table: \"cache\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55013,7 +54006,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_code_updates", + "name": "cache_insert_input", "ofType": null } } @@ -55022,51 +54015,18 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_code_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_cache", - "description": "update data of the table: \"cache\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "cache_set_input", + "name": "cache_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -55078,32 +54038,32 @@ "deprecationReason": null }, { - "name": "update_cache_by_pk", - "description": "update single row of the table: \"cache\"", + "name": "insert_cache_one", + "description": "insert a single row into the table: \"cache\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "cache_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "cache_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "cache_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "cache_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55119,12 +54079,12 @@ "deprecationReason": null }, { - "name": "update_cache_many", - "description": "update multiples rows of table: \"cache\"", + "name": "insert_invite", + "description": "insert data into the table: \"invite\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55136,7 +54096,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "cache_updates", + "name": "invite_insert_input", "ofType": null } } @@ -55145,51 +54105,18 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "cache_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_invite", - "description": "update data of the table: \"invite\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "invite_set_input", + "name": "invite_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -55201,32 +54128,32 @@ "deprecationReason": null }, { - "name": "update_invite_by_pk", - "description": "update single row of the table: \"invite\"", + "name": "insert_invite_one", + "description": "insert a single row into the table: \"invite\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "invite_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "invite_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55242,12 +54169,12 @@ "deprecationReason": null }, { - "name": "update_invite_many", - "description": "update multiples rows of table: \"invite\"", + "name": "insert_jwks", + "description": "insert data into the table: \"jwks\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55259,7 +54186,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_updates", + "name": "jwks_insert_input", "ofType": null } } @@ -55268,229 +54195,256 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "invite_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_jwks", - "description": "update data of the table: \"jwks\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_append_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_delete_at_path_input", + "name": "jwks_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "jwks_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_jwks_one", + "description": "insert a single row into the table: \"jwks\"", + "args": [ { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_elem_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_delete_key_input", + "name": "jwks_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "jwks", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_localisations", + "description": "insert data into the table: \"localisations\"", + "args": [ { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_set_input", + "name": "localisations_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "jwks_mutation_response", + "name": "localisations_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_jwks_by_pk", - "description": "update single row of the table: \"jwks\"", + "name": "insert_localisations_one", + "description": "insert a single row into the table: \"localisations\"", "args": [ { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_append_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_delete_at_path_input", + "name": "localisations_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_membership", + "description": "insert data into the table: \"membership\"", + "args": [ { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_delete_elem_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_delete_key_input", + "name": "membership_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "membership_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_membership_one", + "description": "insert a single row into the table: \"membership\"", + "args": [ { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "jwks_prepend_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_set_input", + "name": "membership_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "jwks_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "jwks", + "name": "membership", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_jwks_many", - "description": "update multiples rows of table: \"jwks\"", + "name": "insert_notification_log", + "description": "insert data into the table: \"notification_log\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55502,7 +54456,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_updates", + "name": "notification_log_insert_input", "ofType": null } } @@ -55511,88 +54465,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "jwks_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_localisations", - "description": "update data of the table: \"localisations\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_set_input", + "name": "notification_log_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "localisations_mutation_response", + "name": "notification_log_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_localisations_by_pk", - "description": "update single row of the table: \"localisations\"", + "name": "insert_notification_log_one", + "description": "insert a single row into the table: \"notification_log\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "localisations_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "localisations_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "notification_log_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55601,19 +54522,19 @@ ], "type": { "kind": "OBJECT", - "name": "localisations", + "name": "notification_log", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_localisations_many", - "description": "update multiples rows of table: \"localisations\"", + "name": "insert_notification_log_wallet_address", + "description": "insert data into the table: \"notification_log_wallet_address\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55625,7 +54546,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_updates", + "name": "notification_log_wallet_address_insert_input", "ofType": null } } @@ -55634,88 +54555,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "localisations_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_membership", - "description": "update data of the table: \"membership\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "membership_set_input", + "name": "notification_log_wallet_address_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "membership_mutation_response", + "name": "notification_log_wallet_address_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_membership_by_pk", - "description": "update single row of the table: \"membership\"", + "name": "insert_notification_log_wallet_address_one", + "description": "insert a single row into the table: \"notification_log_wallet_address\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "membership_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55724,19 +54612,19 @@ ], "type": { "kind": "OBJECT", - "name": "membership", + "name": "notification_log_wallet_address", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_membership_many", - "description": "update multiples rows of table: \"membership\"", + "name": "insert_nullifier", + "description": "insert data into the table: \"nullifier\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55748,7 +54636,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_updates", + "name": "nullifier_insert_input", "ofType": null } } @@ -55757,88 +54645,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_notification_log", - "description": "update data of the table: \"notification_log\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_set_input", + "name": "nullifier_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "notification_log_mutation_response", + "name": "nullifier_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_notification_log_by_pk", - "description": "update single row of the table: \"notification_log\"", + "name": "insert_nullifier_one", + "description": "insert a single row into the table: \"nullifier\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "nullifier_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55847,19 +54702,19 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_notification_log_many", - "description": "update multiples rows of table: \"notification_log\"", + "name": "insert_nullifier_uses_seen", + "description": "insert data into the table: \"nullifier_uses_seen\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55871,7 +54726,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_updates", + "name": "nullifier_uses_seen_insert_input", "ofType": null } } @@ -55880,88 +54735,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "notification_log_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_notification_log_wallet_address", - "description": "update data of the table: \"notification_log_wallet_address\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_set_input", + "name": "nullifier_uses_seen_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address_mutation_response", + "name": "nullifier_uses_seen_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_notification_log_wallet_address_by_pk", - "description": "update single row of the table: \"notification_log_wallet_address\"", + "name": "insert_nullifier_uses_seen_one", + "description": "insert a single row into the table: \"nullifier_uses_seen\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -55970,19 +54792,19 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "nullifier_uses_seen", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_notification_log_wallet_address_many", - "description": "update multiples rows of table: \"notification_log_wallet_address\"", + "name": "insert_nullifier_v4", + "description": "insert data into the table: \"nullifier_v4\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -55994,7 +54816,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_updates", + "name": "nullifier_v4_insert_input", "ofType": null } } @@ -56003,133 +54825,166 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "notification_log_wallet_address_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "nullifier_v4_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier", - "description": "update data of the table: \"nullifier\"", + "name": "insert_nullifier_v4_one", + "description": "insert a single row into the table: \"nullifier_v4\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_set_input", + "name": "nullifier_v4_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_mutation_response", + "name": "nullifier_v4", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_by_pk", - "description": "update single row of the table: \"nullifier\"", + "name": "insert_redirect", + "description": "insert data into the table: \"redirect\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "redirect_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_set_input", + "name": "redirect_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "redirect_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_redirect_one", + "description": "insert a single row into the table: \"redirect\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_pk_columns_input", + "name": "redirect_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "redirect_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier", + "name": "redirect", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_many", - "description": "update multiples rows of table: \"nullifier\"", + "name": "insert_role", + "description": "insert data into the table: \"role\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -56141,7 +54996,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_updates", + "name": "role_insert_input", "ofType": null } } @@ -56150,133 +55005,166 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "role_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "nullifier_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "role_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_uses_seen", - "description": "update data of the table: \"nullifier_uses_seen\"", + "name": "insert_role_one", + "description": "insert a single row into the table: \"role\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "role_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_set_input", + "name": "role_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen_mutation_response", + "name": "role", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_uses_seen_by_pk", - "description": "update single row of the table: \"nullifier_uses_seen\"", + "name": "insert_rp_registration", + "description": "insert data into the table: \"rp_registration\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_set_input", + "name": "rp_registration_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "rp_registration_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_rp_registration_one", + "description": "insert a single row into the table: \"rp_registration\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_pk_columns_input", + "name": "rp_registration_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "rp_registration", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_uses_seen_many", - "description": "update multiples rows of table: \"nullifier_uses_seen\"", + "name": "insert_sandbox_access_request", + "description": "insert data into the table: \"sandbox_access_request\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -56288,7 +55176,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_updates", + "name": "sandbox_access_request_insert_input", "ofType": null } } @@ -56297,133 +55185,166 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "sandbox_access_request_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_v4", - "description": "update data of the table: \"nullifier_v4\"", + "name": "insert_sandbox_access_request_one", + "description": "insert a single row into the table: \"sandbox_access_request\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_set_input", + "name": "sandbox_access_request_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_v4_mutation_response", + "name": "sandbox_access_request", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_v4_by_pk", - "description": "update single row of the table: \"nullifier_v4\"", + "name": "insert_team", + "description": "insert data into the table: \"team\"", "args": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "objects", + "description": "the rows to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_inc_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_insert_input", + "ofType": null + } + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_set_input", + "name": "team_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "team_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insert_team_one", + "description": "insert a single row into the table: \"team\"", + "args": [ { - "name": "pk_columns", - "description": null, + "name": "object", + "description": "the row to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_pk_columns_input", + "name": "team_insert_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_nullifier_v4_many", - "description": "update multiples rows of table: \"nullifier_v4\"", + "name": "insert_user", + "description": "insert data into the table: \"user\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -56435,7 +55356,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_updates", + "name": "user_insert_input", "ofType": null } } @@ -56444,88 +55365,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "nullifier_v4_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_redirect", - "description": "update data of the table: \"redirect\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "on_conflict", + "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_set_input", + "name": "user_on_conflict", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "redirect_mutation_response", + "name": "user_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_redirect_by_pk", - "description": "update single row of the table: \"redirect\"", + "name": "insert_user_one", + "description": "insert a single row into the table: \"user\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "redirect_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "redirect_pk_columns_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "user_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -56534,19 +55422,19 @@ ], "type": { "kind": "OBJECT", - "name": "redirect", + "name": "user", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_redirect_many", - "description": "update multiples rows of table: \"redirect\"", + "name": "insert_world_id_app_stats_daily", + "description": "insert data into the table: \"world_id_app_stats_daily\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -56558,7 +55446,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_updates", + "name": "world_id_app_stats_daily_insert_input", "ofType": null } } @@ -56567,47 +55455,55 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "redirect_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "world_id_app_stats_daily_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_role", - "description": "update data of the table: \"role\"", + "name": "insert_world_id_app_stats_daily_one", + "description": "insert a single row into the table: \"world_id_app_stats_daily\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "INPUT_OBJECT", - "name": "role_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_insert_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "role_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_on_conflict", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -56616,37 +55512,57 @@ ], "type": { "kind": "OBJECT", - "name": "role_mutation_response", + "name": "world_id_app_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_role_by_pk", - "description": "update single row of the table: \"role\"", + "name": "invalidate_cache", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "InvalidateCacheOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invite_team_members", + "description": "Create invites and send emails", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "emails", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "role_set_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "role_pk_columns_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -56657,63 +55573,58 @@ ], "type": { "kind": "OBJECT", - "name": "role", + "name": "InviteTeamMembersOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_role_many", - "description": "update multiples rows of table: \"role\"", + "name": "merge_world_id_accounts", + "description": "execute VOLATILE function \"merge_world_id_accounts\" which returns \"user\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "args", + "description": "input parameters for function \"merge_world_id_accounts\"", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "merge_world_id_accounts_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "role_updates", - "ofType": null - } + "kind": "ENUM", + "name": "user_select_column", + "ofType": null } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "role_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_rp_registration", - "description": "update data of the table: \"rp_registration\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_set_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56721,137 +55632,152 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_order_by", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "rp_registration_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_rp_registration_by_pk", - "description": "update single row of the table: \"rp_registration\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "where", + "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_set_input", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pk_columns", - "description": null, - "type": { + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_pk_columns_input", + "kind": "OBJECT", + "name": "user", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "rp_registration", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_rp_registration_many", - "description": "update multiples rows of table: \"rp_registration\"", + "name": "register_rp", + "description": "Register an RP (Relying Party) for an app with managed mode", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signer_address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "rp_registration_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "RegisterRpOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_sandbox_access_request", - "description": "update data of the table: \"sandbox_access_request\"", + "name": "reset_api_key", + "description": "Reset the given API key for the developer portal", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "team_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -56862,37 +55788,41 @@ ], "type": { "kind": "OBJECT", - "name": "sandbox_access_request_mutation_response", + "name": "ResetAPIOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_sandbox_access_request_by_pk", - "description": "update single row of the table: \"sandbox_access_request\"", + "name": "reset_client_secret", + "description": "Reset the client secret for a Sign in with World ID application", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "app_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", + "name": "team_id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_pk_columns_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -56903,34 +55833,42 @@ ], "type": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "ResetClientOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_sandbox_access_request_many", - "description": "update multiples rows of table: \"sandbox_access_request\"", + "name": "retry_rp", + "description": "Retry RP registration sync for a specific environment", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "environment", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rp_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -56939,27 +55877,23 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "RetryRpOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_team", - "description": "update data of the table: \"team\"", + "name": "rollup_app_stats", + "description": "execute VOLATILE function \"rollup_app_stats\" which returns \"app_stats\"", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "args", + "description": "input parameters for function \"rollup_app_stats\"", "type": { "kind": "INPUT_OBJECT", - "name": "team_set_input", + "name": "rollup_app_stats_args", "ofType": null }, "defaultValue": null, @@ -56967,40 +55901,31 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_stats_select_column", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_team_by_pk", - "description": "update single row of the table: \"team\"", - "args": [ + }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "INPUT_OBJECT", - "name": "team_set_input", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -57008,96 +55933,216 @@ "deprecationReason": null }, { - "name": "pk_columns", - "description": null, + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_pk_columns_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_order_by", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "team", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_stats", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_team_many", - "description": "update multiples rows of table: \"team\"", + "name": "rollup_world_id_analytics", + "description": "execute VOLATILE function \"rollup_world_id_analytics\" which returns \"world_id_app_stats_daily\"", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "args", + "description": "input parameters for function \"rollup_world_id_analytics\"", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "rollup_world_id_analytics_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_updates", - "ofType": null - } + "kind": "ENUM", + "name": "world_id_app_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_order_by", + "ofType": null } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "team_mutation_response", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_user", - "description": "update data of the table: \"user\"", + "name": "rotate_signer_key", + "description": "Rotate the signer key for an RP (Relying Party)", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "app_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "new_signer_address", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -57108,37 +56153,41 @@ ], "type": { "kind": "OBJECT", - "name": "user_mutation_response", + "name": "RotateSignerKeyOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_user_by_pk", - "description": "update single row of the table: \"user\"", + "name": "switch_to_self_managed", + "description": "Switch an RP from managed to self-managed mode by transferring the on-chain manager key", "args": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "app_id", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pk_columns", + "name": "new_manager_address", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_pk_columns_input", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -57149,34 +56198,26 @@ ], "type": { "kind": "OBJECT", - "name": "user", + "name": "SwitchToSelfManagedOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_user_many", - "description": "update multiples rows of table: \"user\"", + "name": "toggle_rp_active", + "description": "Activate or deactivate a managed RP on-chain", "args": [ { - "name": "updates", - "description": "updates to execute, in order", + "name": "app_id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_updates", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -57185,23 +56226,19 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "user_mutation_response", - "ofType": null - } + "kind": "OBJECT", + "name": "ToggleRpActiveOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "validate_localisation", - "description": null, + "name": "unban_app", + "description": "Unbans an app", "args": [ { - "name": "app_metadata_id", + "name": "app_id", "description": null, "type": { "kind": "NON_NULL", @@ -57215,16 +56252,53 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UnbanAppOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_action", + "description": "update data of the table: \"action\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", "ofType": null } }, @@ -57235,73 +56309,155 @@ ], "type": { "kind": "OBJECT", - "name": "ValidateLocalisationOutput", + "name": "action_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "verify_app", - "description": "Verify an App", + "name": "update_action_by_pk", + "description": "update single row of the table: \"action\"", "args": [ { - "name": "app_id", - "description": null, + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "action_inc_input", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_reviewer_app_store_approved", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "action_pk_columns_input", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "action", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_action_legacy_stats_daily", + "description": "update data of the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "is_reviewer_world_app_approved", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_mutation_response", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_action_legacy_stats_daily_by_pk", + "description": "update single row of the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reviewer_name", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_pk_columns_input", "ofType": null } }, @@ -57312,33 +56468,47 @@ ], "type": { "kind": "OBJECT", - "name": "VerifyAppOutput", + "name": "action_legacy_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log", - "description": "columns and relationships of \"notification_log\"", - "fields": [ + }, { - "name": "app_id", - "description": null, - "args": [], + "name": "update_action_legacy_stats_daily_many", + "description": "update multiples rows of table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_legacy_stats_daily_mutation_response", "ofType": null } }, @@ -57346,15 +56516,40 @@ "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], + "name": "update_action_many", + "description": "update multiples rows of table: \"action\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_mutation_response", "ofType": null } }, @@ -57362,150 +56557,269 @@ "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_action_stats_returning", + "description": "update data of the table: \"action_stats_returning\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "action_stats_returning_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, - "args": [], + "name": "update_action_stats_returning_by_pk", + "description": "update single row of the table: \"action_stats_returning\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_stats_returning", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "args": [], + "name": "update_action_stats_returning_many", + "description": "update multiples rows of table: \"action_stats_returning\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "action_stats_returning_mutation_response", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_aggregate", - "description": "aggregated selection of \"notification_log\"", - "fields": [ + }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "update_action_v4", + "description": "update data of the table: \"action_v4\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "notification_log_aggregate_fields", + "name": "action_v4_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_action_v4_by_pk", + "description": "update single row of the table: \"action_v4\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "notification_log", + "kind": "INPUT_OBJECT", + "name": "action_v4_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "action_v4", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_aggregate_fields", - "description": "aggregate fields of \"notification_log\"", - "fields": [ + }, { - "name": "count", - "description": null, + "name": "update_action_v4_many", + "description": "update multiples rows of table: \"action_v4\"", "args": [ { - "name": "columns", - "description": null, + "name": "updates", + "description": "updates to execute, in order", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "notification_log_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_updates", + "ofType": null + } } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "action_v4_mutation_response", "ofType": null } }, @@ -57513,403 +56827,973 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], + "name": "update_action_v4_stats_daily", + "description": "update data of the table: \"action_v4_stats_daily\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "notification_log_max_fields", + "name": "action_v4_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": null, - "args": [], + "name": "update_action_v4_stats_daily_by_pk", + "description": "update single row of the table: \"action_v4_stats_daily\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "notification_log_min_fields", + "name": "action_v4_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "description": "Boolean expression to filter rows from the table \"notification_log\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", - "description": null, + "name": "update_action_v4_stats_daily_many", + "description": "update multiples rows of table: \"action_v4_stats_daily\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "action_v4_stats_daily_mutation_response", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "update_api_key", + "description": "update data of the table: \"api_key\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "api_key_set_input", "ofType": null - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_id", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "api_key_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_api_key_by_pk", + "description": "update single row of the table: \"api_key\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "api_key_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "OBJECT", + "name": "api_key", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_api_key_many", + "description": "update multiples rows of table: \"api_key\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "api_key_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "api_key_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, + "name": "update_app", + "description": "update data of the table: \"app\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "app_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_constraint", - "description": "unique or primary key constraints on table \"notification_log\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "notification_log_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_insert_input", - "description": "input type for inserting data into table \"notification_log\"", - "fields": null, - "inputFields": [ - { - "name": "app_id", - "description": null, + "name": "update_app_by_pk", + "description": "update single row of the table: \"app\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_app_daily_users", + "description": "update data of the table: \"app_daily_users\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_daily_users_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_app_daily_users_by_pk", + "description": "update single row of the table: \"app_daily_users\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_daily_users", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, + "name": "update_app_daily_users_many", + "description": "update multiples rows of table: \"app_daily_users\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_daily_users_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "app_id", - "description": null, - "args": [], + "name": "update_app_many", + "description": "update multiples rows of table: \"app\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], + "name": "update_app_metadata", + "description": "update data of the table: \"app_metadata\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_metadata_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "update_app_metadata_by_pk", + "description": "update single row of the table: \"app_metadata\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_metadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, - "args": [], + "name": "update_app_metadata_many", + "description": "update multiples rows of table: \"app_metadata\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_metadata_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_metadata_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "args": [], + "name": "update_app_rankings", + "description": "update data of the table: \"app_rankings\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_rankings_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "app_id", - "description": null, - "args": [], + "name": "update_app_rankings_by_pk", + "description": "update single row of the table: \"app_rankings\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_rankings", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], + "name": "update_app_rankings_many", + "description": "update multiples rows of table: \"app_rankings\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_rankings_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_rankings_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "update_app_report", + "description": "update data of the table: \"app_report\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_report_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, - "args": [], + "name": "update_app_report_appeal", + "description": "update data of the table: \"app_report_appeal\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_report_appeal_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "args": [], + "name": "update_app_report_appeal_by_pk", + "description": "update single row of the table: \"app_report_appeal\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_report_appeal", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_mutation_response", - "description": "response of any mutation on the table \"notification_log\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "update_app_report_appeal_many", + "description": "update multiples rows of table: \"app_report_appeal\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "app_report_appeal_mutation_response", "ofType": null } }, @@ -57917,545 +57801,618 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_app_report_by_pk", + "description": "update single row of the table: \"app_report\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "notification_log", + "kind": "INPUT_OBJECT", + "name": "app_report_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_on_conflict", - "description": "on_conflict condition type for table \"notification_log\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "notification_log_constraint", - "ofType": null - } + "kind": "OBJECT", + "name": "app_report", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_app_report_many", + "description": "update multiples rows of table: \"app_report\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "notification_log_update_column", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_updates", + "ofType": null + } + } } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_report_mutation_response", + "ofType": null } }, - "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_order_by", - "description": "Ordering options when selecting data from \"notification_log\".", - "fields": null, - "inputFields": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, + "name": "update_app_reviews", + "description": "update data of the table: \"app_reviews\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "app_reviews_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, + "name": "update_app_reviews_by_pk", + "description": "update single row of the table: \"app_reviews\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "app_reviews", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_pk_columns_input", - "description": "primary key columns input for table: notification_log", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + "name": "update_app_reviews_many", + "description": "update multiples rows of table: \"app_reviews\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_reviews_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_reviews_mutation_response", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_select_column", - "description": "select columns of table \"notification_log\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mini_app_path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_set_input", - "description": "input type for updating data in table \"notification_log\"", - "fields": null, - "inputFields": [ - { - "name": "app_id", - "description": null, + "name": "update_app_stats", + "description": "update data of the table: \"app_stats\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "app_stats_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_app_stats_by_pk", + "description": "update single row of the table: \"app_stats\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_stats_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "app_stats", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_app_stats_many", + "description": "update multiples rows of table: \"app_stats\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stats_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_stats_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": null, + "name": "update_auth_code", + "description": "update data of the table: \"auth_code\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "auth_code_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mini_app_path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_stream_cursor_input", - "description": "Streaming cursor of the table \"notification_log\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_stream_cursor_value_input", - "ofType": null + "name": "update_auth_code_by_pk", + "description": "update single row of the table: \"auth_code\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "auth_code_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "app_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mini_app_path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_update_column", - "description": "update columns of table \"notification_log\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mini_app_path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + ], "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_set_input", + "kind": "OBJECT", + "name": "auth_code", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address", - "description": "columns and relationships of \"notification_log_wallet_address\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_auth_code_many", + "description": "update multiples rows of table: \"auth_code\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "auth_code_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notification_log_id", - "description": null, - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "auth_code_mutation_response", "ofType": null } }, @@ -58463,122 +58420,122 @@ "deprecationReason": null }, { - "name": "wallet_address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_cache", + "description": "update data of the table: \"cache\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "cache_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "cache_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address_aggregate", - "description": "aggregated selection of \"notification_log_wallet_address\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], + ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address_aggregate_fields", + "name": "cache_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_cache_by_pk", + "description": "update single row of the table: \"cache\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "cache_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "notification_log_wallet_address", + "kind": "INPUT_OBJECT", + "name": "cache_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "cache", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address_aggregate_fields", - "description": "aggregate fields of \"notification_log_wallet_address\"", - "fields": [ + }, { - "name": "count", - "description": null, + "name": "update_cache_many", + "description": "update multiples rows of table: \"cache\"", "args": [ { - "name": "columns", - "description": null, + "name": "updates", + "description": "updates to execute, in order", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "cache_updates", + "ofType": null + } } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "cache_mutation_response", "ofType": null } }, @@ -58586,355 +58543,734 @@ "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "notification_log_wallet_address_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], + "name": "update_invite", + "description": "update data of the table: \"invite\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address_min_fields", + "name": "invite_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "description": "Boolean expression to filter rows from the table \"notification_log_wallet_address\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "name": "update_invite_by_pk", + "description": "update single row of the table: \"invite\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "invite_set_input", "ofType": null - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_not", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "kind": "OBJECT", + "name": "invite", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", - "description": null, + "name": "update_invite_many", + "description": "update multiples rows of table: \"invite\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "invite_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "ofType": null - } + "kind": "OBJECT", + "name": "invite_mutation_response", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "update_jwks", + "description": "update data of the table: \"jwks\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "OBJECT", + "name": "jwks_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_jwks_by_pk", + "description": "update single row of the table: \"jwks\"", + "args": [ + { + "name": "_append", + "description": "append existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_append_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_at_path", + "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_at_path_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_elem", + "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_elem_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_delete_key", + "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_delete_key_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_prepend", + "description": "prepend existing jsonb value of filtered columns with new jsonb value", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_prepend_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "OBJECT", + "name": "jwks", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, + "name": "update_jwks_many", + "description": "update multiples rows of table: \"jwks\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "jwks_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "jwks_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_wallet_address_constraint", - "description": "unique or primary key constraints on table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "notification_log_wallet_address_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_insert_input", - "description": "input type for inserting data into table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "update_localisations", + "description": "update data of the table: \"localisations\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "localisations_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_localisations_by_pk", + "description": "update single row of the table: \"localisations\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "localisations", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "wallet_address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], + "name": "update_localisations_many", + "description": "update multiples rows of table: \"localisations\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "update_membership", + "description": "update data of the table: \"membership\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "membership_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, - "args": [], + "name": "update_membership_by_pk", + "description": "update single row of the table: \"membership\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "membership", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], + "name": "update_membership_many", + "description": "update multiples rows of table: \"membership\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "membership_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], + "name": "update_notification_log", + "description": "update data of the table: \"notification_log\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "notification_log_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "notification_log_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, - "args": [], + "name": "update_notification_log_by_pk", + "description": "update single row of the table: \"notification_log\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "notification_log_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "notification_log", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "notification_log_wallet_address_mutation_response", - "description": "response of any mutation on the table \"notification_log_wallet_address\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "update_notification_log_many", + "description": "update multiples rows of table: \"notification_log\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "notification_log_mutation_response", "ofType": null } }, @@ -58942,465 +59278,809 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_notification_log_wallet_address", + "description": "update data of the table: \"notification_log_wallet_address\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "notification_log_wallet_address", + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_bool_exp", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_on_conflict", - "description": "on_conflict condition type for table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "notification_log_wallet_address_constraint", - "ofType": null - } + "kind": "OBJECT", + "name": "notification_log_wallet_address_mutation_response", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_notification_log_wallet_address_by_pk", + "description": "update single row of the table: \"notification_log_wallet_address\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "notification_log_wallet_address_update_column", + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "notification_log_wallet_address", + "ofType": null }, - "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "update_notification_log_wallet_address_many", + "description": "update multiples rows of table: \"notification_log_wallet_address\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_wallet_address_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "notification_log_wallet_address_mutation_response", + "ofType": null + } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_order_by", - "description": "Ordering options when selecting data from \"notification_log_wallet_address\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_nullifier", + "description": "update data of the table: \"nullifier\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, + "name": "update_nullifier_by_pk", + "description": "update single row of the table: \"nullifier\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_pk_columns_input", - "description": "primary key columns input for table: notification_log_wallet_address", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, + "name": "update_nullifier_many", + "description": "update multiples rows of table: \"nullifier\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "nullifier_mutation_response", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", - "description": "select columns of table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": "column name", + "name": "update_nullifier_uses_seen", + "description": "update data of the table: \"nullifier_uses_seen\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "nullifier_uses_seen_mutation_response", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_set_input", - "description": "input type for updating data in table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "update_nullifier_uses_seen_by_pk", + "description": "update single row of the table: \"nullifier_uses_seen\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "nullifier_uses_seen", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_nullifier_uses_seen_many", + "description": "update multiples rows of table: \"nullifier_uses_seen\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "nullifier_uses_seen_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, + "name": "update_nullifier_v4", + "description": "update data of the table: \"nullifier_v4\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "nullifier_v4_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, + "name": "update_nullifier_v4_by_pk", + "description": "update single row of the table: \"nullifier_v4\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "nullifier_v4", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_stream_cursor_input", - "description": "Streaming cursor of the table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": [ + }, { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "update_nullifier_v4_many", + "description": "update multiples rows of table: \"nullifier_v4\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_stream_cursor_value_input", + "kind": "OBJECT", + "name": "nullifier_v4_mutation_response", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, + "name": "update_redirect", + "description": "update data of the table: \"redirect\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "redirect_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "redirect_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "redirect_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "update_redirect_by_pk", + "description": "update single row of the table: \"redirect\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "redirect_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "redirect_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "redirect", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_id", - "description": null, + "name": "update_redirect_many", + "description": "update multiples rows of table: \"redirect\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "redirect_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "redirect_mutation_response", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": null, + "name": "update_role", + "description": "update data of the table: \"role\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "role_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "role_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "role_mutation_response", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "notification_log_wallet_address_update_column", - "description": "update columns of table \"notification_log_wallet_address\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notification_log_id", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "wallet_address", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "update_role_by_pk", + "description": "update single row of the table: \"role\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "role_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "role_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_set_input", + "kind": "OBJECT", + "name": "role", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", - "ofType": null + "name": "update_role_many", + "description": "update multiples rows of table: \"role\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "role_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier", - "description": "columns and relationships of \"nullifier\"", - "fields": [ - { - "name": "action", - "description": "An object relationship", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "action", + "name": "role_mutation_response", "ofType": null } }, @@ -59408,63 +60088,122 @@ "deprecationReason": null }, { - "name": "action_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_rp_registration", + "description": "update data of the table: \"rp_registration\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "OBJECT", + "name": "rp_registration_mutation_response", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "update_rp_registration_by_pk", + "description": "update single row of the table: \"rp_registration\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "rp_registration", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, - "args": [], + "name": "update_rp_registration_many", + "description": "update multiples rows of table: \"rp_registration\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "rp_registration_mutation_response", "ofType": null } }, @@ -59472,366 +60211,726 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", - "description": null, - "args": [], + "name": "update_sandbox_access_request", + "description": "update data of the table: \"sandbox_access_request\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "sandbox_access_request_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "name": "update_sandbox_access_request_by_pk", + "description": "update single row of the table: \"sandbox_access_request\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "sandbox_access_request", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "uses", - "description": null, - "args": [], + "name": "update_sandbox_access_request_many", + "description": "update multiples rows of table: \"sandbox_access_request\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "sandbox_access_request_mutation_response", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_aggregate", - "description": "aggregated selection of \"nullifier\"", - "fields": [ + }, { - "name": "aggregate", - "description": null, - "args": [], + "name": "update_team", + "description": "update data of the table: \"team\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "nullifier_aggregate_fields", + "name": "team_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "update_team_by_pk", + "description": "update single row of the table: \"team\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "nullifier", + "kind": "INPUT_OBJECT", + "name": "team_pk_columns_input", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, + ], "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_aggregate_bool_exp_count", + "kind": "OBJECT", + "name": "team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", - "description": null, + "name": "update_team_many", + "description": "update multiples rows of table: \"team\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "nullifier_select_column", - "ofType": null - } + "kind": "OBJECT", + "name": "team_mutation_response", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", - "description": null, + "name": "update_user", + "description": "update data of the table: \"user\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "user_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "user_mutation_response", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", - "description": null, + "name": "update_user_by_pk", + "description": "update single row of the table: \"user\"", + "args": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "user_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "kind": "OBJECT", + "name": "user", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "predicate", - "description": null, + "name": "update_user_many", + "description": "update multiples rows of table: \"user\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "OBJECT", + "name": "user_mutation_response", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_aggregate_fields", - "description": "aggregate fields of \"nullifier\"", - "fields": [ + }, { - "name": "avg", - "description": null, - "args": [], + "name": "update_world_id_app_stats_daily", + "description": "update data of the table: \"world_id_app_stats_daily\"", + "args": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "nullifier_avg_fields", + "name": "world_id_app_stats_daily_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", - "description": null, + "name": "update_world_id_app_stats_daily_by_pk", + "description": "update single row of the table: \"world_id_app_stats_daily\"", "args": [ { - "name": "columns", - "description": null, + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "nullifier_select_column", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_inc_input", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_set_input", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "pk_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_pk_columns_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_max_fields", + "name": "world_id_app_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", - "description": null, - "args": [], + "name": "update_world_id_app_stats_daily_many", + "description": "update multiples rows of table: \"world_id_app_stats_daily\"", + "args": [ + { + "name": "updates", + "description": "updates to execute, in order", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_updates", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "nullifier_min_fields", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_mutation_response", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev", + "name": "validate_localisation", "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_stddev_fields", - "ofType": null - }, + "args": [ + { + "name": "app_metadata_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ValidateLocalisationOutput", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", - "description": null, - "args": [], + "name": "verify_app", + "description": "Verify an App", + "args": [ + { + "name": "app_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_reviewer_app_store_approved", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_reviewer_world_app_approved", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewer_name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "OBJECT", - "name": "nullifier_stddev_pop_fields", + "name": "VerifyAppOutput", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "notification_log", + "description": "columns and relationships of \"notification_log\"", + "fields": [ { - "name": "stddev_samp", + "name": "app_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "nullifier_stddev_samp_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "nullifier_sum_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "nullifier_var_pop_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_samp", + "name": "message", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "nullifier_var_samp_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", + "name": "mini_app_path", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "nullifier_variance_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -59843,157 +60942,26 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "nullifier_aggregate_order_by", - "description": "order by aggregate values of table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "avg", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_avg_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_max_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_min_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_pop_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_samp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_samp_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_sum_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_var_pop_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "notification_log_aggregate", + "description": "aggregated selection of \"notification_log\"", + "fields": [ { - "name": "var_samp", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_var_samp_order_by", + "kind": "OBJECT", + "name": "notification_log_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "variance", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_variance_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "data", + "name": "nodes", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -60004,84 +60972,110 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_insert_input", + "kind": "OBJECT", + "name": "notification_log", "ofType": null } } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_on_conflict", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "nullifier_avg_fields", - "description": "aggregate avg on columns", + "name": "notification_log_aggregate_fields", + "description": "aggregate fields of \"notification_log\"", "fields": [ { - "name": "uses", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "notification_log_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "notification_log_max_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_avg_order_by", - "description": "order by avg() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + }, { - "name": "uses", + "name": "min", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "notification_log_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", - "description": "Boolean expression to filter rows from the table \"nullifier\". All fields are combined with a logical 'AND'.", + "name": "notification_log_bool_exp", + "description": "Boolean expression to filter rows from the table \"notification_log\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -60095,7 +61089,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "notification_log_bool_exp", "ofType": null } } @@ -60109,7 +61103,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -60127,7 +61121,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "notification_log_bool_exp", "ofType": null } } @@ -60137,19 +61131,7 @@ "deprecationReason": null }, { - "name": "action", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_id", + "name": "app_id", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -60185,7 +61167,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "message", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -60197,7 +61179,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -60207,30 +61189,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -60239,74 +61197,33 @@ }, { "kind": "ENUM", - "name": "nullifier_constraint", - "description": "unique or primary key constraints on table \"nullifier\"", + "name": "notification_log_constraint", + "description": "unique or primary key constraints on table \"notification_log\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "nullifier_pkey", + "name": "notification_log_pkey", "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "unique_nullifier_hash", - "description": "unique or primary key constraint on columns \"nullifier_hash\"", - "isDeprecated": false, - "deprecationReason": null } ], "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "nullifier_inc_input", - "description": "input type for incrementing numeric columns in table \"nullifier\"", + "name": "notification_log_insert_input", + "description": "input type for inserting data into table \"notification_log\"", "fields": null, "inputFields": [ { - "name": "uses", + "name": "app_id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_insert_input", - "description": "input type for inserting data into table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "action", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "action_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "name": "String", "ofType": null }, "defaultValue": null, @@ -60338,7 +61255,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -60350,7 +61267,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "type": { "kind": "SCALAR", @@ -60360,30 +61277,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -60392,11 +61285,11 @@ }, { "kind": "OBJECT", - "name": "nullifier_max_fields", + "name": "notification_log_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "action_id", + "name": "app_id", "description": null, "args": [], "type": { @@ -60432,7 +61325,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "message", "description": null, "args": [], "type": { @@ -60444,7 +61337,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "args": [], "type": { @@ -60454,30 +61347,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -60485,108 +61354,13 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_max_order_by", - "description": "order by max() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "action_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash_int", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "nullifier_min_fields", + "name": "notification_log_min_fields", "description": "aggregate min on columns", "fields": [ { - "name": "action_id", + "name": "app_id", "description": null, "args": [], "type": { @@ -60622,7 +61396,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "message", "description": null, "args": [], "type": { @@ -60634,7 +61408,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "args": [], "type": { @@ -60644,30 +61418,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -60675,105 +61425,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_min_order_by", - "description": "order by min() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "action_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash_int", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "nullifier_mutation_response", - "description": "response of any mutation on the table \"nullifier\"", + "name": "notification_log_mutation_response", + "description": "response of any mutation on the table \"notification_log\"", "fields": [ { "name": "affected_rows", @@ -60806,7 +61461,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier", + "name": "notification_log", "ofType": null } } @@ -60823,8 +61478,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_on_conflict", - "description": "on_conflict condition type for table \"nullifier\"", + "name": "notification_log_on_conflict", + "description": "on_conflict condition type for table \"notification_log\"", "fields": null, "inputFields": [ { @@ -60835,7 +61490,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_constraint", + "name": "notification_log_constraint", "ofType": null } }, @@ -60857,7 +61512,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_update_column", + "name": "notification_log_update_column", "ofType": null } } @@ -60872,7 +61527,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -60886,24 +61541,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_order_by", - "description": "Ordering options when selecting data from \"nullifier\".", + "name": "notification_log_order_by", + "description": "Ordering options when selecting data from \"notification_log\".", "fields": null, "inputFields": [ { - "name": "action", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_id", + "name": "app_id", "description": null, "type": { "kind": "ENUM", @@ -60939,31 +61582,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash_int", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", + "name": "message", "description": null, "type": { "kind": "ENUM", @@ -60975,7 +61594,7 @@ "deprecationReason": null }, { - "name": "uses", + "name": "mini_app_path", "description": null, "type": { "kind": "ENUM", @@ -60993,8 +61612,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_pk_columns_input", - "description": "primary key columns input for table: nullifier", + "name": "notification_log_pk_columns_input", + "description": "primary key columns input for table: notification_log", "fields": null, "inputFields": [ { @@ -61020,14 +61639,14 @@ }, { "kind": "ENUM", - "name": "nullifier_select_column", - "description": "select columns of table \"nullifier\"", + "name": "notification_log_select_column", + "description": "select columns of table \"notification_log\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "action_id", + "name": "app_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -61045,25 +61664,13 @@ "deprecationReason": null }, { - "name": "nullifier_hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash_int", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", + "name": "message", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "uses", + "name": "mini_app_path", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -61073,12 +61680,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_set_input", - "description": "input type for updating data in table \"nullifier\"", + "name": "notification_log_set_input", + "description": "input type for updating data in table \"notification_log\"", "fields": null, "inputFields": [ { - "name": "action_id", + "name": "app_id", "description": null, "type": { "kind": "SCALAR", @@ -61114,7 +61721,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -61126,7 +61733,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "type": { "kind": "SCALAR", @@ -61136,25 +61743,40 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "notification_log_stream_cursor_input", + "description": "Streaming cursor of the table \"notification_log\"", + "fields": null, + "inputFields": [ { - "name": "updated_at", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "notification_log_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "uses", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -61167,226 +61789,49 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "nullifier_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "notification_log_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "uses", + "name": "app_id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_order_by", - "description": "order by stddev() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + }, { - "name": "uses", + "name": "created_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ + }, { - "name": "uses", + "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + }, { - "name": "uses", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "uses", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_stream_cursor_input", - "description": "Streaming cursor of the table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "nullifier_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "action_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash", + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -61398,7 +61843,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash_int", + "name": "mini_app_path", "description": null, "type": { "kind": "SCALAR", @@ -61408,76 +61853,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uses", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_sum_order_by", - "description": "order by sum() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ - { - "name": "uses", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -61486,14 +61861,14 @@ }, { "kind": "ENUM", - "name": "nullifier_update_column", - "description": "update columns of table \"nullifier\"", + "name": "notification_log_update_column", + "description": "update columns of table \"notification_log\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "action_id", + "name": "app_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -61511,25 +61886,13 @@ "deprecationReason": null }, { - "name": "nullifier_hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier_hash_int", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", + "name": "message", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "uses", + "name": "mini_app_path", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -61539,28 +61902,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_updates", + "name": "notification_log_updates", "description": null, "fields": null, "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_set_input", + "name": "notification_log_set_input", "ofType": null }, "defaultValue": null, @@ -61575,7 +61926,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "notification_log_bool_exp", "ofType": null } }, @@ -61590,11 +61941,11 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen", - "description": "columns and relationships of \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address", + "description": "columns and relationships of \"notification_log_wallet_address\"", "fields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -61610,7 +61961,7 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "args": [], "type": { @@ -61618,7 +61969,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -61626,7 +61977,23 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": null, "args": [], "type": { @@ -61649,8 +62016,8 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen_aggregate", - "description": "aggregated selection of \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_aggregate", + "description": "aggregated selection of \"notification_log_wallet_address\"", "fields": [ { "name": "aggregate", @@ -61658,7 +62025,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen_aggregate_fields", + "name": "notification_log_wallet_address_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -61679,7 +62046,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "notification_log_wallet_address", "ofType": null } } @@ -61696,21 +62063,9 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen_aggregate_fields", - "description": "aggregate fields of \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_aggregate_fields", + "description": "aggregate fields of \"notification_log_wallet_address\"", "fields": [ - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_avg_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "count", "description": null, @@ -61726,7 +62081,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", + "name": "notification_log_wallet_address_select_column", "ofType": null } } @@ -61766,7 +62121,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen_max_fields", + "name": "notification_log_wallet_address_max_fields", "ofType": null }, "isDeprecated": false, @@ -61778,114 +62133,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_sum_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_var_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_var_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "nullifier_uses_seen_variance_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "last_seen_uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", + "name": "notification_log_wallet_address_min_fields", "ofType": null }, "isDeprecated": false, @@ -61899,8 +62147,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", - "description": "Boolean expression to filter rows from the table \"nullifier_uses_seen\". All fields are combined with a logical 'AND'.", + "name": "notification_log_wallet_address_bool_exp", + "description": "Boolean expression to filter rows from the table \"notification_log_wallet_address\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -61914,7 +62162,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null } } @@ -61928,7 +62176,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -61946,7 +62194,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null } } @@ -61956,7 +62204,7 @@ "deprecationReason": null }, { - "name": "last_seen_at", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -61968,11 +62216,11 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -61980,7 +62228,19 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -61998,15 +62258,15 @@ }, { "kind": "ENUM", - "name": "nullifier_uses_seen_constraint", - "description": "unique or primary key constraints on table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_constraint", + "description": "unique or primary key constraints on table \"notification_log_wallet_address\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "nullifier_uses_seen_pkey", - "description": "unique or primary key constraint on columns \"nullifier_hash\"", + "name": "notification_log_wallet_address_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null } @@ -62015,39 +62275,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_inc_input", - "description": "input type for incrementing numeric columns in table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_insert_input", + "description": "input type for inserting data into table \"notification_log_wallet_address\"", "fields": null, "inputFields": [ { - "name": "last_seen_uses", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_insert_input", - "description": "input type for inserting data into table \"nullifier_uses_seen\"", - "fields": null, - "inputFields": [ + }, { - "name": "last_seen_at", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -62055,11 +62304,11 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "notification_log_id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -62067,7 +62316,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "wallet_address", "description": null, "type": { "kind": "SCALAR", @@ -62085,11 +62334,11 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen_max_fields", + "name": "notification_log_wallet_address_max_fields", "description": "aggregate max on columns", "fields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -62101,19 +62350,19 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", "description": null, "args": [], "type": { @@ -62123,20 +62372,32 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_min_fields", - "description": "aggregate min on columns", + }, + { + "name": "wallet_address", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "notification_log_wallet_address_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -62148,19 +62409,31 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": null, "args": [], "type": { @@ -62179,8 +62452,8 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen_mutation_response", - "description": "response of any mutation on the table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_mutation_response", + "description": "response of any mutation on the table \"notification_log_wallet_address\"", "fields": [ { "name": "affected_rows", @@ -62213,7 +62486,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "notification_log_wallet_address", "ofType": null } } @@ -62230,8 +62503,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_on_conflict", - "description": "on_conflict condition type for table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_on_conflict", + "description": "on_conflict condition type for table \"notification_log_wallet_address\"", "fields": null, "inputFields": [ { @@ -62242,7 +62515,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_constraint", + "name": "notification_log_wallet_address_constraint", "ofType": null } }, @@ -62264,7 +62537,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_update_column", + "name": "notification_log_wallet_address_update_column", "ofType": null } } @@ -62279,7 +62552,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -62293,12 +62566,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_order_by", - "description": "Ordering options when selecting data from \"nullifier_uses_seen\".", + "name": "notification_log_wallet_address_order_by", + "description": "Ordering options when selecting data from \"notification_log_wallet_address\".", "fields": null, "inputFields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -62310,7 +62583,7 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -62322,7 +62595,19 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": null, "type": { "kind": "ENUM", @@ -62340,12 +62625,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_pk_columns_input", - "description": "primary key columns input for table: nullifier_uses_seen", + "name": "notification_log_wallet_address_pk_columns_input", + "description": "primary key columns input for table: notification_log_wallet_address", "fields": null, "inputFields": [ { - "name": "nullifier_hash", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -62367,26 +62652,32 @@ }, { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", - "description": "select columns of table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_select_column", + "description": "select columns of table \"notification_log_wallet_address\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "last_seen_at", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -62396,12 +62687,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_set_input", - "description": "input type for updating data in table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_set_input", + "description": "input type for updating data in table \"notification_log_wallet_address\"", "fields": null, "inputFields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", @@ -62413,11 +62704,11 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -62425,7 +62716,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", "description": null, "type": { "kind": "SCALAR", @@ -62435,85 +62726,28 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ - { - "name": "last_seen_uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "last_seen_uses", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ + }, { - "name": "last_seen_uses", + "name": "wallet_address", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_stream_cursor_input", - "description": "Streaming cursor of the table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_stream_cursor_input", + "description": "Streaming cursor of the table \"notification_log_wallet_address\"", "fields": null, "inputFields": [ { @@ -62524,7 +62758,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_stream_cursor_value_input", + "name": "notification_log_wallet_address_stream_cursor_value_input", "ofType": null } }, @@ -62551,12 +62785,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_stream_cursor_value_input", + "name": "notification_log_wallet_address_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "last_seen_at", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", @@ -62568,11 +62802,11 @@ "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -62580,7 +62814,7 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", "description": null, "type": { "kind": "SCALAR", @@ -62590,57 +62824,52 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + }, { - "name": "last_seen_uses", + "name": "wallet_address", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "nullifier_uses_seen_update_column", - "description": "update columns of table \"nullifier_uses_seen\"", + "name": "notification_log_wallet_address_update_column", + "description": "update columns of table \"notification_log_wallet_address\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "last_seen_at", + "name": "created_at", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "last_seen_uses", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "notification_log_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wallet_address", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -62650,28 +62879,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_updates", + "name": "notification_log_wallet_address_updates", "description": null, "fields": null, "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_inc_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_set", "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_set_input", + "name": "notification_log_wallet_address_set_input", "ofType": null }, "defaultValue": null, @@ -62686,7 +62903,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null } }, @@ -62701,88 +62918,51 @@ }, { "kind": "OBJECT", - "name": "nullifier_uses_seen_var_pop_fields", - "description": "aggregate var_pop on columns", + "name": "nullifier", + "description": "columns and relationships of \"nullifier\"", "fields": [ { - "name": "last_seen_uses", - "description": null, + "name": "action", + "description": "An object relationship", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "last_seen_uses", + "name": "action_id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_uses_seen_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "last_seen_uses", + "name": "created_at", "description": null, "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_v4", - "description": "Nullifiers for World ID 4.0 verification, ensures uniqueness per action", - "fields": [ - { - "name": "action_v4", - "description": "An object relationship", - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "action_v4", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null } }, @@ -62790,7 +62970,7 @@ "deprecationReason": null }, { - "name": "action_v4_id", + "name": "id", "description": null, "args": [], "type": { @@ -62806,7 +62986,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "nullifier_hash", "description": null, "args": [], "type": { @@ -62814,7 +62994,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -62822,7 +63002,19 @@ "deprecationReason": null }, { - "name": "id", + "name": "nullifier_hash_int", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", "description": null, "args": [], "type": { @@ -62830,7 +63022,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } }, @@ -62838,15 +63030,15 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "numeric", + "name": "Int", "ofType": null } }, @@ -62861,8 +63053,8 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_aggregate", - "description": "aggregated selection of \"nullifier_v4\"", + "name": "nullifier_aggregate", + "description": "aggregated selection of \"nullifier\"", "fields": [ { "name": "aggregate", @@ -62870,7 +63062,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_aggregate_fields", + "name": "nullifier_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -62891,7 +63083,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "nullifier", "ofType": null } } @@ -62908,7 +63100,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_aggregate_bool_exp", + "name": "nullifier_aggregate_bool_exp", "description": null, "fields": null, "inputFields": [ @@ -62917,7 +63109,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_aggregate_bool_exp_count", + "name": "nullifier_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, @@ -62931,7 +63123,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_aggregate_bool_exp_count", + "name": "nullifier_aggregate_bool_exp_count", "description": null, "fields": null, "inputFields": [ @@ -62946,7 +63138,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -62972,7 +63164,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -63002,8 +63194,8 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_aggregate_fields", - "description": "aggregate fields of \"nullifier_v4\"", + "name": "nullifier_aggregate_fields", + "description": "aggregate fields of \"nullifier\"", "fields": [ { "name": "avg", @@ -63011,7 +63203,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_avg_fields", + "name": "nullifier_avg_fields", "ofType": null }, "isDeprecated": false, @@ -63032,7 +63224,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -63072,7 +63264,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_max_fields", + "name": "nullifier_max_fields", "ofType": null }, "isDeprecated": false, @@ -63084,7 +63276,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_min_fields", + "name": "nullifier_min_fields", "ofType": null }, "isDeprecated": false, @@ -63096,7 +63288,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_stddev_fields", + "name": "nullifier_stddev_fields", "ofType": null }, "isDeprecated": false, @@ -63108,7 +63300,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_stddev_pop_fields", + "name": "nullifier_stddev_pop_fields", "ofType": null }, "isDeprecated": false, @@ -63120,7 +63312,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_stddev_samp_fields", + "name": "nullifier_stddev_samp_fields", "ofType": null }, "isDeprecated": false, @@ -63132,7 +63324,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_sum_fields", + "name": "nullifier_sum_fields", "ofType": null }, "isDeprecated": false, @@ -63144,7 +63336,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_var_pop_fields", + "name": "nullifier_var_pop_fields", "ofType": null }, "isDeprecated": false, @@ -63156,7 +63348,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_var_samp_fields", + "name": "nullifier_var_samp_fields", "ofType": null }, "isDeprecated": false, @@ -63168,7 +63360,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "nullifier_v4_variance_fields", + "name": "nullifier_variance_fields", "ofType": null }, "isDeprecated": false, @@ -63182,8 +63374,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_aggregate_order_by", - "description": "order by aggregate values of table \"nullifier_v4\"", + "name": "nullifier_aggregate_order_by", + "description": "order by aggregate values of table \"nullifier\"", "fields": null, "inputFields": [ { @@ -63191,7 +63383,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_avg_order_by", + "name": "nullifier_avg_order_by", "ofType": null }, "defaultValue": null, @@ -63215,7 +63407,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_max_order_by", + "name": "nullifier_max_order_by", "ofType": null }, "defaultValue": null, @@ -63227,7 +63419,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_min_order_by", + "name": "nullifier_min_order_by", "ofType": null }, "defaultValue": null, @@ -63239,7 +63431,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_order_by", + "name": "nullifier_stddev_order_by", "ofType": null }, "defaultValue": null, @@ -63251,7 +63443,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_pop_order_by", + "name": "nullifier_stddev_pop_order_by", "ofType": null }, "defaultValue": null, @@ -63263,7 +63455,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_samp_order_by", + "name": "nullifier_stddev_samp_order_by", "ofType": null }, "defaultValue": null, @@ -63275,7 +63467,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_sum_order_by", + "name": "nullifier_sum_order_by", "ofType": null }, "defaultValue": null, @@ -63287,7 +63479,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_var_pop_order_by", + "name": "nullifier_var_pop_order_by", "ofType": null }, "defaultValue": null, @@ -63299,7 +63491,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_var_samp_order_by", + "name": "nullifier_var_samp_order_by", "ofType": null }, "defaultValue": null, @@ -63311,7 +63503,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_variance_order_by", + "name": "nullifier_variance_order_by", "ofType": null }, "defaultValue": null, @@ -63325,8 +63517,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"nullifier_v4\"", + "name": "nullifier_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"nullifier\"", "fields": null, "inputFields": [ { @@ -63343,7 +63535,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_insert_input", + "name": "nullifier_insert_input", "ofType": null } } @@ -63358,7 +63550,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_on_conflict", + "name": "nullifier_on_conflict", "ofType": null }, "defaultValue": null, @@ -63372,12 +63564,12 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_avg_fields", + "name": "nullifier_avg_fields", "description": "aggregate avg on columns", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -63395,13 +63587,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_avg_order_by", - "description": "order by avg() on columns of table \"nullifier_v4\"", + "name": "nullifier_avg_order_by", + "description": "order by avg() on columns of table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -63418,8 +63610,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", - "description": "Boolean expression to filter rows from the table \"nullifier_v4\". All fields are combined with a logical 'AND'.", + "name": "nullifier_bool_exp", + "description": "Boolean expression to filter rows from the table \"nullifier\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { @@ -63433,7 +63625,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null } } @@ -63447,7 +63639,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -63465,7 +63657,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null } } @@ -63475,11 +63667,11 @@ "deprecationReason": null }, { - "name": "action_v4", + "name": "action", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", + "name": "action_bool_exp", "ofType": null }, "defaultValue": null, @@ -63487,7 +63679,7 @@ "deprecationReason": null }, { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -63523,11 +63715,47 @@ "deprecationReason": null }, { - "name": "nullifier", + "name": "nullifier_hash", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -63541,21 +63769,21 @@ }, { "kind": "ENUM", - "name": "nullifier_v4_constraint", - "description": "unique or primary key constraints on table \"nullifier_v4\"", + "name": "nullifier_constraint", + "description": "unique or primary key constraints on table \"nullifier\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "nullifier_v4_nullifier_key", - "description": "unique or primary key constraint on columns \"nullifier\"", + "name": "nullifier_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_v4_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "unique_nullifier_hash", + "description": "unique or primary key constraint on columns \"nullifier_hash\"", "isDeprecated": false, "deprecationReason": null } @@ -63564,16 +63792,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_inc_input", - "description": "input type for incrementing numeric columns in table \"nullifier_v4\"", + "name": "nullifier_inc_input", + "description": "input type for incrementing numeric columns in table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63587,16 +63815,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_insert_input", - "description": "input type for inserting data into table \"nullifier_v4\"", + "name": "nullifier_insert_input", + "description": "input type for inserting data into table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "action_v4", + "name": "action", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_obj_rel_insert_input", + "name": "action_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -63604,7 +63832,7 @@ "deprecationReason": null }, { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "SCALAR", @@ -63640,105 +63868,35 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_v4_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "action_v4_id", + "name": "nullifier_hash", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "nullifier_hash_int", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_max_order_by", - "description": "order by max() on columns of table \"nullifier_v4\"", - "fields": null, - "inputFields": [ - { - "name": "action_v4_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "updated_at", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -63746,23 +63904,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "uses", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", - "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63776,11 +63922,11 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_min_fields", - "description": "aggregate min on columns", + "name": "nullifier_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "action_v4_id", + "name": "action_id", "description": null, "args": [], "type": { @@ -63816,12 +63962,48 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "nullifier_hash", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -63835,12 +64017,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_min_order_by", - "description": "order by min() on columns of table \"nullifier_v4\"", + "name": "nullifier_max_order_by", + "description": "order by max() on columns of table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "ENUM", @@ -63876,8 +64058,44 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -63894,8 +64112,198 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_mutation_response", - "description": "response of any mutation on the table \"nullifier_v4\"", + "name": "nullifier_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "action_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_min_order_by", + "description": "order by min() on columns of table \"nullifier\"", + "fields": null, + "inputFields": [ + { + "name": "action_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_mutation_response", + "description": "response of any mutation on the table \"nullifier\"", "fields": [ { "name": "affected_rows", @@ -63928,7 +64336,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "nullifier", "ofType": null } } @@ -63945,8 +64353,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_on_conflict", - "description": "on_conflict condition type for table \"nullifier_v4\"", + "name": "nullifier_on_conflict", + "description": "on_conflict condition type for table \"nullifier\"", "fields": null, "inputFields": [ { @@ -63957,7 +64365,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_constraint", + "name": "nullifier_constraint", "ofType": null } }, @@ -63979,7 +64387,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_update_column", + "name": "nullifier_update_column", "ofType": null } } @@ -63994,7 +64402,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -64008,16 +64416,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_order_by", - "description": "Ordering options when selecting data from \"nullifier_v4\".", + "name": "nullifier_order_by", + "description": "Ordering options when selecting data from \"nullifier\".", "fields": null, "inputFields": [ { - "name": "action_v4", + "name": "action", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_order_by", + "name": "action_order_by", "ofType": null }, "defaultValue": null, @@ -64025,7 +64433,7 @@ "deprecationReason": null }, { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "ENUM", @@ -64061,7 +64469,43 @@ "deprecationReason": null }, { - "name": "nullifier", + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", "description": null, "type": { "kind": "ENUM", @@ -64079,8 +64523,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_pk_columns_input", - "description": "primary key columns input for table: nullifier_v4", + "name": "nullifier_pk_columns_input", + "description": "primary key columns input for table: nullifier", "fields": null, "inputFields": [ { @@ -64106,14 +64550,14 @@ }, { "kind": "ENUM", - "name": "nullifier_v4_select_column", - "description": "select columns of table \"nullifier_v4\"", + "name": "nullifier_select_column", + "description": "select columns of table \"nullifier\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "action_v4_id", + "name": "action_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -64131,7 +64575,25 @@ "deprecationReason": null }, { - "name": "nullifier", + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -64141,12 +64603,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_set_input", - "description": "input type for updating data in table \"nullifier_v4\"", + "name": "nullifier_set_input", + "description": "input type for updating data in table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "SCALAR", @@ -64182,11 +64644,47 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "nullifier_hash", + "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -64200,12 +64698,12 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_stddev_fields", + "name": "nullifier_stddev_fields", "description": "aggregate stddev on columns", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -64223,13 +64721,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_order_by", - "description": "order by stddev() on columns of table \"nullifier_v4\"", + "name": "nullifier_stddev_order_by", + "description": "order by stddev() on columns of table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -64246,12 +64744,12 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_stddev_pop_fields", + "name": "nullifier_stddev_pop_fields", "description": "aggregate stddev_pop on columns", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -64269,13 +64767,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"nullifier_v4\"", + "name": "nullifier_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -64292,12 +64790,12 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_stddev_samp_fields", + "name": "nullifier_stddev_samp_fields", "description": "aggregate stddev_samp on columns", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -64315,13 +64813,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"nullifier_v4\"", + "name": "nullifier_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"nullifier\"", "fields": null, "inputFields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -64338,8 +64836,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stream_cursor_input", - "description": "Streaming cursor of the table \"nullifier_v4\"", + "name": "nullifier_stream_cursor_input", + "description": "Streaming cursor of the table \"nullifier\"", "fields": null, "inputFields": [ { @@ -64350,7 +64848,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stream_cursor_value_input", + "name": "nullifier_stream_cursor_value_input", "ofType": null } }, @@ -64377,12 +64875,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stream_cursor_value_input", + "name": "nullifier_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "action_v4_id", + "name": "action_id", "description": null, "type": { "kind": "SCALAR", @@ -64418,54 +64916,90 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "nullifier_hash", + "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_v4_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", - "args": [], + "name": "nullifier_hash_int", + "description": null, "type": { "kind": "SCALAR", - "name": "numeric", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_sum_order_by", - "description": "order by sum() on columns of table \"nullifier_v4\"", - "fields": null, - "inputFields": [ + }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_sum_order_by", + "description": "order by sum() on columns of table \"nullifier\"", + "fields": null, + "inputFields": [ + { + "name": "uses", + "description": null, "type": { "kind": "ENUM", "name": "order_by", @@ -64482,14 +65016,14 @@ }, { "kind": "ENUM", - "name": "nullifier_v4_update_column", - "description": "update columns of table \"nullifier_v4\"", + "name": "nullifier_update_column", + "description": "update columns of table \"nullifier\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "action_v4_id", + "name": "action_id", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -64507,7 +65041,25 @@ "deprecationReason": null }, { - "name": "nullifier", + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash_int", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uses", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -64517,7 +65069,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_updates", + "name": "nullifier_updates", "description": null, "fields": null, "inputFields": [ @@ -64526,7 +65078,7 @@ "description": "increments the numeric columns with given value of the filtered values", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_inc_input", + "name": "nullifier_inc_input", "ofType": null }, "defaultValue": null, @@ -64538,7 +65090,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_set_input", + "name": "nullifier_set_input", "ofType": null }, "defaultValue": null, @@ -64553,7 +65105,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "nullifier_bool_exp", "ofType": null } }, @@ -64568,17 +65120,53 @@ }, { "kind": "OBJECT", - "name": "nullifier_v4_var_pop_fields", - "description": "aggregate var_pop on columns", + "name": "nullifier_uses_seen", + "description": "columns and relationships of \"nullifier_uses_seen\"", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "last_seen_at", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -64590,224 +65178,221 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_var_pop_order_by", - "description": "order by var_pop() on columns of table \"nullifier_v4\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "nullifier_uses_seen_aggregate", + "description": "aggregated selection of \"nullifier_uses_seen\"", + "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier_uses_seen_aggregate_fields", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "nullifier_uses_seen", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "nullifier_v4_var_samp_fields", - "description": "aggregate var_samp on columns", + "name": "nullifier_uses_seen_aggregate_fields", + "description": "aggregate fields of \"nullifier_uses_seen\"", "fields": [ { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "avg", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "nullifier_uses_seen_avg_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_var_samp_order_by", - "description": "order by var_samp() on columns of table \"nullifier_v4\"", - "fields": null, - "inputFields": [ + }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "nullifier_uses_seen_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_uses_seen_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_v4_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "min", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "nullifier_uses_seen_min_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_v4_variance_order_by", - "description": "order by variance() on columns of table \"nullifier_v4\"", - "fields": null, - "inputFields": [ + }, { - "name": "nullifier", - "description": "The nullifier hash from the proof, unique globally", + "name": "stddev", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "uses", + "name": "stddev_pop", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_pop_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_var_pop_order_by", - "description": "order by var_pop() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + }, { - "name": "uses", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "uses", + "name": "sum", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "nullifier_uses_seen_sum_fields", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "nullifier_var_samp_order_by", - "description": "order by var_samp() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + }, { - "name": "uses", + "name": "var_pop", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "nullifier_uses_seen_var_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "nullifier_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "uses", + "name": "var_samp", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "nullifier_uses_seen_var_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_uses_seen_variance_fields", "ofType": null }, "isDeprecated": false, @@ -64820,74 +65405,60 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "nullifier_variance_order_by", - "description": "order by variance() on columns of table \"nullifier\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "nullifier_uses_seen_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { - "name": "uses", + "name": "last_seen_uses", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "numeric", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", + "name": "nullifier_uses_seen_bool_exp", + "description": "Boolean expression to filter rows from the table \"nullifier_uses_seen\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_gt", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gte", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -64895,7 +65466,7 @@ "deprecationReason": null }, { - "name": "_in", + "name": "_or", "description": null, "type": { "kind": "LIST", @@ -64904,8 +65475,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", "ofType": null } } @@ -64915,11 +65486,11 @@ "deprecationReason": null }, { - "name": "_is_null", + "name": "last_seen_at", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -64927,23 +65498,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "last_seen_uses", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", "ofType": null }, "defaultValue": null, @@ -64951,36 +65510,16 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "nullifier_hash", "description": null, "type": { - "kind": "SCALAR", - "name": "numeric", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -64989,45 +65528,15 @@ }, { "kind": "ENUM", - "name": "order_by", - "description": "column ordering options", + "name": "nullifier_uses_seen_constraint", + "description": "unique or primary key constraints on table \"nullifier_uses_seen\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "asc", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_first", - "description": "in ascending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_last", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_first", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_last", - "description": "in descending order, nulls last", + "name": "nullifier_uses_seen_pkey", + "description": "unique or primary key constraint on columns \"nullifier_hash\"", "isDeprecated": false, "deprecationReason": null } @@ -65035,27 +65544,40 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "purpose_enum", - "description": null, + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_inc_input", + "description": "input type for incrementing numeric columns in table \"nullifier_uses_seen\"", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "last_seen_uses", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "purpose_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"purpose_enum\". All fields are combined with logical 'AND'.", + "name": "nullifier_uses_seen_insert_input", + "description": "input type for inserting data into table \"nullifier_uses_seen\"", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "last_seen_at", "description": null, "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -65063,11 +65585,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "last_seen_uses", "description": null, "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65075,196 +65597,141 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "nullifier_hash", "description": null, "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "_in", + "name": "last_seen_at", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "last_seen_uses", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lt", + "name": "nullifier_hash", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "_lte", + "name": "last_seen_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_neq", + "name": "last_seen_uses", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "purpose_enum", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_nin", + "name": "nullifier_hash", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "purpose_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "query_root", - "description": null, + "name": "nullifier_uses_seen_mutation_response", + "description": "response of any mutation on the table \"nullifier_uses_seen\"", "fields": [ { - "name": "action", - "description": "fetch data from the table: \"action\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -65276,7 +65743,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action", + "name": "nullifier_uses_seen", "ofType": null } } @@ -65284,172 +65751,3474 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_on_conflict", + "description": "on_conflict condition type for table \"nullifier_uses_seen\"", + "fields": null, + "inputFields": [ { - "name": "action_aggregate", - "description": "fetch aggregated fields from the table: \"action\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "action_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "constraint", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "action_aggregate", + "kind": "ENUM", + "name": "nullifier_uses_seen_constraint", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_by_pk", - "description": "fetch data from the table: \"action\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "nullifier_uses_seen_update_column", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, "type": { - "kind": "OBJECT", - "name": "action", + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_order_by", + "description": "Ordering options when selecting data from \"nullifier_uses_seen\".", + "fields": null, + "inputFields": [ + { + "name": "last_seen_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_stats", - "description": "execute function \"action_stats\" which returns \"action_stats_returning\"", - "args": [ - { - "name": "args", - "description": "input parameters for function \"action_stats\"", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_args", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "action_stats_returning_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", + "name": "last_seen_uses", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_pk_columns_input", + "description": "primary key columns input for table: nullifier_uses_seen", + "fields": null, + "inputFields": [ + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "nullifier_uses_seen_select_column", + "description": "select columns of table \"nullifier_uses_seen\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "last_seen_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_seen_uses", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_set_input", + "description": "input type for updating data in table \"nullifier_uses_seen\"", + "fields": null, + "inputFields": [ + { + "name": "last_seen_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_seen_uses", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_stream_cursor_input", + "description": "Streaming cursor of the table \"nullifier_uses_seen\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "last_seen_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_seen_uses", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "nullifier_uses_seen_update_column", + "description": "update columns of table \"nullifier_uses_seen\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "last_seen_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_seen_uses", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_uses_seen_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_uses_seen_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "last_seen_uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4", + "description": "Nullifiers for World ID 4.0 verification, ensures uniqueness per action", + "fields": [ + { + "name": "action_v4", + "description": "An object relationship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_aggregate", + "description": "aggregated selection of \"nullifier_v4\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "nullifier_v4", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_aggregate_bool_exp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_aggregate_bool_exp_count", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arguments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "nullifier_v4_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_aggregate_fields", + "description": "aggregate fields of \"nullifier_v4\"", + "fields": [ + { + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_avg_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "nullifier_v4_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sum", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_sum_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_var_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_var_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "nullifier_v4_variance_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_aggregate_order_by", + "description": "order by aggregate values of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "avg", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_avg_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_max_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_min_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_pop_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_samp_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_sum_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_pop", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_var_pop_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_var_samp_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_variance_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_avg_order_by", + "description": "order by avg() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "description": "Boolean expression to filter rows from the table \"nullifier_v4\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "nullifier_v4_constraint", + "description": "unique or primary key constraints on table \"nullifier_v4\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "nullifier_v4_nullifier_key", + "description": "unique or primary key constraint on columns \"nullifier\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_v4_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_inc_input", + "description": "input type for incrementing numeric columns in table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_insert_input", + "description": "input type for inserting data into table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "action_v4", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_obj_rel_insert_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_max_fields", + "description": "aggregate max on columns", + "fields": [ + { + "name": "action_v4_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_max_order_by", + "description": "order by max() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "action_v4_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_min_order_by", + "description": "order by min() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_mutation_response", + "description": "response of any mutation on the table \"nullifier_v4\"", + "fields": [ + { + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "nullifier_v4", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_on_conflict", + "description": "on_conflict condition type for table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "nullifier_v4_constraint", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update_columns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "nullifier_v4_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_order_by", + "description": "Ordering options when selecting data from \"nullifier_v4\".", + "fields": null, + "inputFields": [ + { + "name": "action_v4", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_pk_columns_input", + "description": "primary key columns input for table: nullifier_v4", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "nullifier_v4_select_column", + "description": "select columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_v4_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_set_input", + "description": "input type for updating data in table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_order_by", + "description": "order by stddev() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_pop_order_by", + "description": "order by stddev_pop() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stddev_samp_order_by", + "description": "order by stddev_samp() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stream_cursor_input", + "description": "Streaming cursor of the table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_sum_fields", + "description": "aggregate sum on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_sum_order_by", + "description": "order by sum() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "nullifier_v4_update_column", + "description": "update columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "action_v4_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_inc_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", + "type": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_set_input", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows which have to be updated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_bool_exp", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_var_pop_order_by", + "description": "order by var_pop() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_var_samp_order_by", + "description": "order by var_samp() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_v4_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_v4_variance_order_by", + "description": "order by variance() on columns of table \"nullifier_v4\"", + "fields": null, + "inputFields": [ + { + "name": "nullifier", + "description": "The nullifier hash from the proof, unique globally", + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_var_pop_order_by", + "description": "order by var_pop() on columns of table \"nullifier\"", + "fields": null, + "inputFields": [ + { + "name": "uses", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_var_samp_order_by", + "description": "order by var_samp() on columns of table \"nullifier\"", + "fields": null, + "inputFields": [ + { + "name": "uses", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "nullifier_variance_fields", + "description": "aggregate variance on columns", + "fields": [ + { + "name": "uses", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "nullifier_variance_order_by", + "description": "order by variance() on columns of table \"nullifier\"", + "fields": null, + "inputFields": [ + { + "name": "uses", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "numeric", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", + "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "order_by", + "description": "column ordering options", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "asc", + "description": "in ascending order, nulls last", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "asc_nulls_first", + "description": "in ascending order, nulls first", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "asc_nulls_last", + "description": "in ascending order, nulls last", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc", + "description": "in descending order, nulls first", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc_nulls_first", + "description": "in descending order, nulls first", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc_nulls_last", + "description": "in descending order, nulls last", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "purpose_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "purpose_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"purpose_enum\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "purpose_enum", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "query_root", + "description": null, + "fields": [ + { + "name": "action", + "description": "fetch data from the table: \"action\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_aggregate", + "description": "fetch aggregated fields from the table: \"action\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_by_pk", + "description": "fetch data from the table: \"action\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "action", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_legacy_stats_daily", + "description": "fetch data from the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_legacy_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_legacy_stats_daily_by_pk", + "description": "fetch data from the table: \"action_legacy_stats_daily\" using primary key columns", + "args": [ + { + "name": "action_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_stats", + "description": "execute function \"action_stats\" which returns \"action_stats_returning\"", + "args": [ + { + "name": "args", + "description": "input parameters for function \"action_stats\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", "type": { "kind": "SCALAR", "name": "Int", @@ -66079,6 +69848,245 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "action_v4_stats_daily", + "description": "fetch data from the table: \"action_v4_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"action_v4_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_stats_daily_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_stats_daily_by_pk", + "description": "fetch data from the table: \"action_v4_stats_daily\" using primary key columns", + "args": [ + { + "name": "action_v4_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "admin_dashboard_inventory", "description": null, @@ -69465,7 +73473,352 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_order_by", + "name": "jwks_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "jwks_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "jwks_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jwks_by_pk", + "description": "fetch data from the table: \"jwks\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "jwks", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localisations", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localisations_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "localisations_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "localisations_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "localisations_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "localisations_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localisations_by_pk", + "description": "fetch data from the table: \"localisations\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "localisations", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "membership", + "description": "fetch data from the table: \"membership\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", "ofType": null } } @@ -69479,7 +73832,108 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "membership_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "membership", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "membership_aggregate", + "description": "fetch aggregated fields from the table: \"membership\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -69492,7 +73946,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks_aggregate", + "name": "membership_aggregate", "ofType": null } }, @@ -69500,8 +73954,8 @@ "deprecationReason": null }, { - "name": "jwks_by_pk", - "description": "fetch data from the table: \"jwks\" using primary key columns", + "name": "membership_by_pk", + "description": "fetch data from the table: \"membership\" using primary key columns", "args": [ { "name": "id", @@ -69522,15 +73976,15 @@ ], "type": { "kind": "OBJECT", - "name": "jwks", + "name": "membership", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "localisations", - "description": "An array relationship", + "name": "notification_log", + "description": "fetch data from the table: \"notification_log\"", "args": [ { "name": "distinct_on", @@ -69543,7 +73997,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "localisations_select_column", + "name": "notification_log_select_column", "ofType": null } } @@ -69587,7 +74041,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_order_by", + "name": "notification_log_order_by", "ofType": null } } @@ -69601,7 +74055,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -69620,7 +74074,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations", + "name": "notification_log", "ofType": null } } @@ -69630,8 +74084,8 @@ "deprecationReason": null }, { - "name": "localisations_aggregate", - "description": "An aggregate relationship", + "name": "notification_log_aggregate", + "description": "fetch aggregated fields from the table: \"notification_log\"", "args": [ { "name": "distinct_on", @@ -69644,7 +74098,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "localisations_select_column", + "name": "notification_log_select_column", "ofType": null } } @@ -69688,7 +74142,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_order_by", + "name": "notification_log_order_by", "ofType": null } } @@ -69702,7 +74156,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -69715,7 +74169,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations_aggregate", + "name": "notification_log_aggregate", "ofType": null } }, @@ -69723,8 +74177,8 @@ "deprecationReason": null }, { - "name": "localisations_by_pk", - "description": "fetch data from the table: \"localisations\" using primary key columns", + "name": "notification_log_by_pk", + "description": "fetch data from the table: \"notification_log\" using primary key columns", "args": [ { "name": "id", @@ -69745,15 +74199,15 @@ ], "type": { "kind": "OBJECT", - "name": "localisations", + "name": "notification_log", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "membership", - "description": "fetch data from the table: \"membership\"", + "name": "notification_log_wallet_address", + "description": "fetch data from the table: \"notification_log_wallet_address\"", "args": [ { "name": "distinct_on", @@ -69766,7 +74220,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "membership_select_column", + "name": "notification_log_wallet_address_select_column", "ofType": null } } @@ -69810,7 +74264,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_order_by", + "name": "notification_log_wallet_address_order_by", "ofType": null } } @@ -69824,7 +74278,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -69843,7 +74297,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "membership", + "name": "notification_log_wallet_address", "ofType": null } } @@ -69853,8 +74307,8 @@ "deprecationReason": null }, { - "name": "membership_aggregate", - "description": "fetch aggregated fields from the table: \"membership\"", + "name": "notification_log_wallet_address_aggregate", + "description": "fetch aggregated fields from the table: \"notification_log_wallet_address\"", "args": [ { "name": "distinct_on", @@ -69867,7 +74321,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "membership_select_column", + "name": "notification_log_wallet_address_select_column", "ofType": null } } @@ -69911,7 +74365,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_order_by", + "name": "notification_log_wallet_address_order_by", "ofType": null } } @@ -69925,7 +74379,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -69938,7 +74392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "membership_aggregate", + "name": "notification_log_wallet_address_aggregate", "ofType": null } }, @@ -69946,8 +74400,8 @@ "deprecationReason": null }, { - "name": "membership_by_pk", - "description": "fetch data from the table: \"membership\" using primary key columns", + "name": "notification_log_wallet_address_by_pk", + "description": "fetch data from the table: \"notification_log_wallet_address\" using primary key columns", "args": [ { "name": "id", @@ -69968,15 +74422,15 @@ ], "type": { "kind": "OBJECT", - "name": "membership", + "name": "notification_log_wallet_address", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log", - "description": "fetch data from the table: \"notification_log\"", + "name": "nullifier", + "description": "fetch data from the table: \"nullifier\"", "args": [ { "name": "distinct_on", @@ -69989,7 +74443,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -70033,7 +74487,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_order_by", + "name": "nullifier_order_by", "ofType": null } } @@ -70047,7 +74501,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -70066,7 +74520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier", "ofType": null } } @@ -70076,8 +74530,8 @@ "deprecationReason": null }, { - "name": "notification_log_aggregate", - "description": "fetch aggregated fields from the table: \"notification_log\"", + "name": "nullifier_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier\"", "args": [ { "name": "distinct_on", @@ -70090,7 +74544,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -70134,7 +74588,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_order_by", + "name": "nullifier_order_by", "ofType": null } } @@ -70148,7 +74602,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -70161,7 +74615,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_aggregate", + "name": "nullifier_aggregate", "ofType": null } }, @@ -70169,8 +74623,8 @@ "deprecationReason": null }, { - "name": "notification_log_by_pk", - "description": "fetch data from the table: \"notification_log\" using primary key columns", + "name": "nullifier_by_pk", + "description": "fetch data from the table: \"nullifier\" using primary key columns", "args": [ { "name": "id", @@ -70191,15 +74645,15 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_wallet_address", - "description": "fetch data from the table: \"notification_log_wallet_address\"", + "name": "nullifier_uses_seen", + "description": "fetch data from the table: \"nullifier_uses_seen\"", "args": [ { "name": "distinct_on", @@ -70212,7 +74666,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", + "name": "nullifier_uses_seen_select_column", "ofType": null } } @@ -70256,7 +74710,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_order_by", + "name": "nullifier_uses_seen_order_by", "ofType": null } } @@ -70270,7 +74724,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -70289,7 +74743,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "nullifier_uses_seen", "ofType": null } } @@ -70299,8 +74753,8 @@ "deprecationReason": null }, { - "name": "notification_log_wallet_address_aggregate", - "description": "fetch aggregated fields from the table: \"notification_log_wallet_address\"", + "name": "nullifier_uses_seen_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier_uses_seen\"", "args": [ { "name": "distinct_on", @@ -70313,7 +74767,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", + "name": "nullifier_uses_seen_select_column", "ofType": null } } @@ -70357,7 +74811,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_order_by", + "name": "nullifier_uses_seen_order_by", "ofType": null } } @@ -70371,7 +74825,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -70384,7 +74838,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_wallet_address_aggregate", + "name": "nullifier_uses_seen_aggregate", "ofType": null } }, @@ -70392,11 +74846,11 @@ "deprecationReason": null }, { - "name": "notification_log_wallet_address_by_pk", - "description": "fetch data from the table: \"notification_log_wallet_address\" using primary key columns", + "name": "nullifier_uses_seen_by_pk", + "description": "fetch data from the table: \"nullifier_uses_seen\" using primary key columns", "args": [ { - "name": "id", + "name": "nullifier_hash", "description": null, "type": { "kind": "NON_NULL", @@ -70414,15 +74868,15 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "nullifier_uses_seen", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier", - "description": "fetch data from the table: \"nullifier\"", + "name": "nullifier_v4", + "description": "fetch data from the table: \"nullifier_v4\"", "args": [ { "name": "distinct_on", @@ -70435,7 +74889,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_select_column", + "name": "nullifier_v4_select_column", "ofType": null } } @@ -70479,7 +74933,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_order_by", + "name": "nullifier_v4_order_by", "ofType": null } } @@ -70493,7 +74947,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "nullifier_v4_bool_exp", "ofType": null }, "defaultValue": null, @@ -70512,7 +74966,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier", + "name": "nullifier_v4", "ofType": null } } @@ -70522,8 +74976,8 @@ "deprecationReason": null }, { - "name": "nullifier_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier\"", + "name": "nullifier_v4_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier_v4\"", "args": [ { "name": "distinct_on", @@ -70536,7 +74990,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_select_column", + "name": "nullifier_v4_select_column", "ofType": null } } @@ -70580,7 +75034,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_order_by", + "name": "nullifier_v4_order_by", "ofType": null } } @@ -70594,7 +75048,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "nullifier_v4_bool_exp", "ofType": null }, "defaultValue": null, @@ -70607,7 +75061,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_aggregate", + "name": "nullifier_v4_aggregate", "ofType": null } }, @@ -70615,8 +75069,8 @@ "deprecationReason": null }, { - "name": "nullifier_by_pk", - "description": "fetch data from the table: \"nullifier\" using primary key columns", + "name": "nullifier_v4_by_pk", + "description": "fetch data from the table: \"nullifier_v4\" using primary key columns", "args": [ { "name": "id", @@ -70637,15 +75091,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier", + "name": "nullifier_v4", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_uses_seen", - "description": "fetch data from the table: \"nullifier_uses_seen\"", + "name": "redirect", + "description": "fetch data from the table: \"redirect\"", "args": [ { "name": "distinct_on", @@ -70658,7 +75112,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", + "name": "redirect_select_column", "ofType": null } } @@ -70702,7 +75156,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_order_by", + "name": "redirect_order_by", "ofType": null } } @@ -70716,7 +75170,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "redirect_bool_exp", "ofType": null }, "defaultValue": null, @@ -70735,7 +75189,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "redirect", "ofType": null } } @@ -70745,8 +75199,8 @@ "deprecationReason": null }, { - "name": "nullifier_uses_seen_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier_uses_seen\"", + "name": "redirect_aggregate", + "description": "fetch aggregated fields from the table: \"redirect\"", "args": [ { "name": "distinct_on", @@ -70759,7 +75213,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", + "name": "redirect_select_column", "ofType": null } } @@ -70803,7 +75257,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_order_by", + "name": "redirect_order_by", "ofType": null } } @@ -70817,7 +75271,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "redirect_bool_exp", "ofType": null }, "defaultValue": null, @@ -70830,7 +75284,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen_aggregate", + "name": "redirect_aggregate", "ofType": null } }, @@ -70838,11 +75292,11 @@ "deprecationReason": null }, { - "name": "nullifier_uses_seen_by_pk", - "description": "fetch data from the table: \"nullifier_uses_seen\" using primary key columns", + "name": "redirect_by_pk", + "description": "fetch data from the table: \"redirect\" using primary key columns", "args": [ { - "name": "nullifier_hash", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -70860,15 +75314,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "redirect", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_v4", - "description": "fetch data from the table: \"nullifier_v4\"", + "name": "role", + "description": "fetch data from the table: \"role\"", "args": [ { "name": "distinct_on", @@ -70881,7 +75335,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "role_select_column", "ofType": null } } @@ -70925,7 +75379,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_order_by", + "name": "role_order_by", "ofType": null } } @@ -70939,7 +75393,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "role_bool_exp", "ofType": null }, "defaultValue": null, @@ -70958,7 +75412,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "role", "ofType": null } } @@ -70968,8 +75422,8 @@ "deprecationReason": null }, { - "name": "nullifier_v4_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier_v4\"", + "name": "role_aggregate", + "description": "fetch aggregated fields from the table: \"role\"", "args": [ { "name": "distinct_on", @@ -70982,7 +75436,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "role_select_column", "ofType": null } } @@ -71026,7 +75480,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_order_by", + "name": "role_order_by", "ofType": null } } @@ -71040,7 +75494,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "role_bool_exp", "ofType": null }, "defaultValue": null, @@ -71053,7 +75507,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4_aggregate", + "name": "role_aggregate", "ofType": null } }, @@ -71061,11 +75515,11 @@ "deprecationReason": null }, { - "name": "nullifier_v4_by_pk", - "description": "fetch data from the table: \"nullifier_v4\" using primary key columns", + "name": "role_by_pk", + "description": "fetch data from the table: \"role\" using primary key columns", "args": [ { - "name": "id", + "name": "value", "description": null, "type": { "kind": "NON_NULL", @@ -71083,15 +75537,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "role", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect", - "description": "fetch data from the table: \"redirect\"", + "name": "rp_registration", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -71104,7 +75558,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "redirect_select_column", + "name": "rp_registration_select_column", "ofType": null } } @@ -71148,7 +75602,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_order_by", + "name": "rp_registration_order_by", "ofType": null } } @@ -71162,7 +75616,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null }, "defaultValue": null, @@ -71181,7 +75635,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "redirect", + "name": "rp_registration", "ofType": null } } @@ -71191,8 +75645,8 @@ "deprecationReason": null }, { - "name": "redirect_aggregate", - "description": "fetch aggregated fields from the table: \"redirect\"", + "name": "rp_registration_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -71205,7 +75659,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "redirect_select_column", + "name": "rp_registration_select_column", "ofType": null } } @@ -71249,7 +75703,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_order_by", + "name": "rp_registration_order_by", "ofType": null } } @@ -71263,7 +75717,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null }, "defaultValue": null, @@ -71276,7 +75730,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "redirect_aggregate", + "name": "rp_registration_aggregate", "ofType": null } }, @@ -71284,11 +75738,11 @@ "deprecationReason": null }, { - "name": "redirect_by_pk", - "description": "fetch data from the table: \"redirect\" using primary key columns", + "name": "rp_registration_by_pk", + "description": "fetch data from the table: \"rp_registration\" using primary key columns", "args": [ { - "name": "id", + "name": "rp_id", "description": null, "type": { "kind": "NON_NULL", @@ -71306,15 +75760,15 @@ ], "type": { "kind": "OBJECT", - "name": "redirect", + "name": "rp_registration", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", - "description": "fetch data from the table: \"role\"", + "name": "sandbox_access_request", + "description": "fetch data from the table: \"sandbox_access_request\"", "args": [ { "name": "distinct_on", @@ -71327,7 +75781,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "role_select_column", + "name": "sandbox_access_request_select_column", "ofType": null } } @@ -71371,7 +75825,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_order_by", + "name": "sandbox_access_request_order_by", "ofType": null } } @@ -71385,7 +75839,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "role_bool_exp", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -71404,7 +75858,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "role", + "name": "sandbox_access_request", "ofType": null } } @@ -71414,8 +75868,8 @@ "deprecationReason": null }, { - "name": "role_aggregate", - "description": "fetch aggregated fields from the table: \"role\"", + "name": "sandbox_access_request_aggregate", + "description": "fetch aggregated fields from the table: \"sandbox_access_request\"", "args": [ { "name": "distinct_on", @@ -71428,7 +75882,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "role_select_column", + "name": "sandbox_access_request_select_column", "ofType": null } } @@ -71472,7 +75926,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_order_by", + "name": "sandbox_access_request_order_by", "ofType": null } } @@ -71486,7 +75940,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "role_bool_exp", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -71499,7 +75953,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "role_aggregate", + "name": "sandbox_access_request_aggregate", "ofType": null } }, @@ -71507,11 +75961,11 @@ "deprecationReason": null }, { - "name": "role_by_pk", - "description": "fetch data from the table: \"role\" using primary key columns", + "name": "sandbox_access_request_by_pk", + "description": "fetch data from the table: \"sandbox_access_request\" using primary key columns", "args": [ { - "name": "value", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -71529,15 +75983,15 @@ ], "type": { "kind": "OBJECT", - "name": "role", + "name": "sandbox_access_request", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_registration", - "description": "An array relationship", + "name": "team", + "description": "fetch data from the table: \"team\"", "args": [ { "name": "distinct_on", @@ -71550,7 +76004,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "rp_registration_select_column", + "name": "team_select_column", "ofType": null } } @@ -71594,7 +76048,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", + "name": "team_order_by", "ofType": null } } @@ -71608,7 +76062,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -71627,7 +76081,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "rp_registration", + "name": "team", "ofType": null } } @@ -71637,8 +76091,8 @@ "deprecationReason": null }, { - "name": "rp_registration_aggregate", - "description": "An aggregate relationship", + "name": "team_aggregate", + "description": "fetch aggregated fields from the table: \"team\"", "args": [ { "name": "distinct_on", @@ -71651,7 +76105,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "rp_registration_select_column", + "name": "team_select_column", "ofType": null } } @@ -71695,7 +76149,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", + "name": "team_order_by", "ofType": null } } @@ -71709,7 +76163,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -71722,7 +76176,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "rp_registration_aggregate", + "name": "team_aggregate", "ofType": null } }, @@ -71730,11 +76184,11 @@ "deprecationReason": null }, { - "name": "rp_registration_by_pk", - "description": "fetch data from the table: \"rp_registration\" using primary key columns", + "name": "team_by_pk", + "description": "fetch data from the table: \"team\" using primary key columns", "args": [ { - "name": "rp_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -71752,30 +76206,26 @@ ], "type": { "kind": "OBJECT", - "name": "rp_registration", + "name": "team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sandbox_access_request", - "description": "fetch data from the table: \"sandbox_access_request\"", + "name": "upload_image", + "description": "Generates a Signed URL to upload images", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "app_id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -71783,43 +76233,31 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "content_type_ending", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "image_type", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -71827,41 +76265,45 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows returned", + "name": "locale", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + }, + { + "name": "team_id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "PresignedPostOutput", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sandbox_access_request_aggregate", - "description": "fetch aggregated fields from the table: \"sandbox_access_request\"", + "name": "user", + "description": "fetch data from the table: \"user\"", "args": [ { "name": "distinct_on", @@ -71874,7 +76316,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "sandbox_access_request_select_column", + "name": "user_select_column", "ofType": null } } @@ -71918,7 +76360,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", + "name": "user_order_by", "ofType": null } } @@ -71932,7 +76374,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -71944,46 +76386,25 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox_access_request_by_pk", - "description": "fetch data from the table: \"sandbox_access_request\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "user", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "sandbox_access_request", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "fetch data from the table: \"team\"", + "name": "user_aggregate", + "description": "fetch aggregated fields from the table: \"user\"", "args": [ { "name": "distinct_on", @@ -71996,7 +76417,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "team_select_column", + "name": "user_select_column", "ofType": null } } @@ -72040,7 +76461,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_order_by", + "name": "user_order_by", "ofType": null } } @@ -72054,7 +76475,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -72066,26 +76487,63 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "user_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_by_pk", + "description": "fetch data from the table: \"user\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "team", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "user", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_aggregate", - "description": "fetch aggregated fields from the table: \"team\"", + "name": "world_id_analytics_app_daily", + "description": "execute function \"world_id_analytics_app_daily\" which returns \"world_id_app_stats_daily\"", "args": [ + { + "name": "args", + "description": "input parameters for function \"world_id_analytics_app_daily\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_analytics_app_daily_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "distinct_on", "description": "distinct select on columns", @@ -72097,7 +76555,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "team_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -72141,7 +76599,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -72155,7 +76613,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -72167,56 +76625,35 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "team_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_by_pk", - "description": "fetch data from the table: \"team\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "world_id_app_stats_daily", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "team", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "upload_image", - "description": "Generates a Signed URL to upload images", + "name": "world_id_analytics_app_daily_aggregate", + "description": "execute function \"world_id_analytics_app_daily\" and query aggregates on result of table type \"world_id_app_stats_daily\"", "args": [ { - "name": "app_id", - "description": null, + "name": "args", + "description": "input parameters for function \"world_id_analytics_app_daily_aggregate\"", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "world_id_analytics_app_daily_args", "ofType": null } }, @@ -72225,15 +76662,19 @@ "deprecationReason": null }, { - "name": "content_type_ending", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "world_id_app_stats_daily_select_column", + "ofType": null + } } }, "defaultValue": null, @@ -72241,27 +76682,23 @@ "deprecationReason": null }, { - "name": "image_type", - "description": null, + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", - "description": null, + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -72269,33 +76706,53 @@ "deprecationReason": null }, { - "name": "team_id", - "description": null, + "name": "order_by", + "description": "sort the rows by one or more columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_order_by", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PresignedPostOutput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_aggregate", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", - "description": "fetch data from the table: \"user\"", + "name": "world_id_app_stats_daily", + "description": "fetch data from the table: \"world_id_app_stats_daily\"", "args": [ { "name": "distinct_on", @@ -72308,7 +76765,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "user_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -72352,7 +76809,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -72366,7 +76823,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -72385,7 +76842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "user", + "name": "world_id_app_stats_daily", "ofType": null } } @@ -72395,8 +76852,8 @@ "deprecationReason": null }, { - "name": "user_aggregate", - "description": "fetch aggregated fields from the table: \"user\"", + "name": "world_id_app_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"world_id_app_stats_daily\"", "args": [ { "name": "distinct_on", @@ -72409,7 +76866,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "user_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -72453,7 +76910,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -72467,7 +76924,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -72480,7 +76937,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "user_aggregate", + "name": "world_id_app_stats_daily_aggregate", "ofType": null } }, @@ -72488,18 +76945,18 @@ "deprecationReason": null }, { - "name": "user_by_pk", - "description": "fetch data from the table: \"user\" using primary key columns", + "name": "world_id_app_stats_daily_by_pk", + "description": "fetch data from the table: \"world_id_app_stats_daily\" using primary key columns", "args": [ { - "name": "id", + "name": "date_utc", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null } }, @@ -72510,7 +76967,7 @@ ], "type": { "kind": "OBJECT", - "name": "user", + "name": "world_id_app_stats_daily", "ofType": null }, "isDeprecated": false, @@ -75034,6 +79491,41 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "rollup_world_id_analytics_args", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "from_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "rp_registration", @@ -77634,46 +82126,503 @@ }, { "name": "signer_address", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_operation_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "rp_registration_status", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "rp_registration_status_comparison_exp", + "description": "Boolean expression to compare columns of type \"rp_registration_status\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_neq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "rp_registration_stream_cursor_input", + "description": "Streaming cursor of the table \"rp_registration\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordering", + "description": "cursor ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "rp_registration_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "app_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_unique_manager_key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manager_kms_key_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_mode", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operation_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rp_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signer_address", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_operation_hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staging_status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "rp_registration_status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "rp_registration_update_column", + "description": "update columns of table \"rp_registration\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "app_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_unique_manager_key", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manager_kms_key_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operation_hash", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rp_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signer_address", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "staging_operation_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "staging_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "status", - "description": null, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "rp_registration_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "rp_registration_status", + "kind": "INPUT_OBJECT", + "name": "rp_registration_set_input", "ofType": null }, "defaultValue": null, @@ -77681,12 +82630,16 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "rp_registration_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -77698,178 +82651,207 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "rp_registration_status", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "rp_registration_status_comparison_exp", - "description": "Boolean expression to compare columns of type \"rp_registration_status\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "sandbox_access_request", + "description": "columns and relationships of \"sandbox_access_request\"", + "fields": [ { - "name": "_eq", + "name": "accepted", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gt", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_gte", + "name": "google_email", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_in", + "name": "id", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "processed_at", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lt", - "description": null, + "name": "user", + "description": "An object relationship", + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "user", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_lte", + "name": "user_id", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "sandbox_access_request_aggregate", + "description": "aggregated selection of \"sandbox_access_request\"", + "fields": [ { - "name": "_neq", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "rp_registration_status", + "kind": "OBJECT", + "name": "sandbox_access_request_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_nin", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "rp_registration_status", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sandbox_access_request", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "rp_registration_stream_cursor_input", - "description": "Streaming cursor of the table \"rp_registration\"", + "name": "sandbox_access_request_aggregate_bool_exp", + "description": null, "fields": null, "inputFields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "bool_and", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_stream_cursor_value_input", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_bool_exp_bool_and", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "bool_or", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_bool_exp_bool_or", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_bool_exp_count", "ofType": null }, "defaultValue": null, @@ -77883,28 +82865,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "rp_registration_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "sandbox_access_request_aggregate_bool_exp_bool_and", + "description": null, "fields": null, "inputFields": [ { - "name": "app_id", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -77912,11 +82898,11 @@ "deprecationReason": null }, { - "name": "is_unique_manager_key", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -77924,35 +82910,54 @@ "deprecationReason": null }, { - "name": "manager_kms_key_id", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_bool_exp_bool_or", + "description": null, + "fields": null, + "inputFields": [ { - "name": "mode", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "rp_registration_mode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "operation_hash", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -77960,11 +82965,11 @@ "deprecationReason": null }, { - "name": "rp_id", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -77972,35 +82977,58 @@ "deprecationReason": null }, { - "name": "signer_address", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_bool_exp_count", + "description": null, + "fields": null, + "inputFields": [ { - "name": "staging_operation_hash", + "name": "arguments", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status", + "name": "distinct", "description": null, "type": { "kind": "SCALAR", - "name": "rp_registration_status", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -78008,11 +83036,11 @@ "deprecationReason": null }, { - "name": "status", + "name": "filter", "description": null, "type": { - "kind": "SCALAR", - "name": "rp_registration_status", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -78020,12 +83048,16 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "predicate", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -78037,100 +83069,215 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "rp_registration_update_column", - "description": "update columns of table \"rp_registration\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "app_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_unique_manager_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manager_kms_key_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "sandbox_access_request_aggregate_fields", + "description": "aggregate fields of \"sandbox_access_request\"", + "fields": [ { - "name": "mode", - "description": "column name", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "operation_hash", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "sandbox_access_request_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "rp_id", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "sandbox_access_request_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_aggregate_order_by", + "description": "order by aggregate values of table \"sandbox_access_request\"", + "fields": null, + "inputFields": [ { - "name": "signer_address", - "description": "column name", + "name": "count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_operation_hash", - "description": "column name", + "name": "max", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_max_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "staging_status", - "description": "column name", + "name": "min", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_min_order_by", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_arr_rel_insert_input", + "description": "input type for inserting array relation for remote table \"sandbox_access_request\"", + "fields": null, + "inputFields": [ { - "name": "status", - "description": "column name", + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_insert_input", + "ofType": null + } + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_on_conflict", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "rp_registration_updates", - "description": null, + "name": "sandbox_access_request_bool_exp", + "description": "Boolean expression to filter rows from the table \"sandbox_access_request\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_set_input", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -78138,204 +83285,149 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "_or", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sandbox_access_request", - "description": "columns and relationships of \"sandbox_access_request\"", - "fields": [ + }, { "name": "accepted", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "google_email", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "processed_at", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "user", - "description": "An object relationship", - "args": [], + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "user", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "sandbox_access_request_aggregate", - "description": "aggregated selection of \"sandbox_access_request\"", - "fields": [ + "kind": "ENUM", + "name": "sandbox_access_request_constraint", + "description": "unique or primary key constraints on table \"sandbox_access_request\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "sandbox_access_request_aggregate_fields", - "ofType": null - }, + "name": "sandbox_access_request_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request", - "ofType": null - } - } - } - }, + "name": "unique_sandbox_access_request_user_id", + "description": "unique or primary key constraint on columns \"user_id\"", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp", - "description": null, + "name": "sandbox_access_request_insert_input", + "description": "input type for inserting data into table \"sandbox_access_request\"", "fields": null, "inputFields": [ { - "name": "bool_and", + "name": "accepted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_bool_and", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -78343,11 +83435,11 @@ "deprecationReason": null }, { - "name": "bool_or", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_bool_or", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -78355,50 +83447,35 @@ "deprecationReason": null }, { - "name": "count", + "name": "google_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_count", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_bool_and", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "arguments", + "name": "id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "processed_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -78406,11 +83483,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "user", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "user_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -78418,16 +83495,12 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "user_id", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -78439,104 +83512,100 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_bool_or", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "sandbox_access_request_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "arguments", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "google_email", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "predicate", + "name": "processed_at", "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp_count", - "description": null, + "name": "sandbox_access_request_max_order_by", + "description": "order by max() on columns of table \"sandbox_access_request\"", "fields": null, "inputFields": [ { - "name": "arguments", + "name": "created_at", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "ofType": null - } - } + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "distinct", + "name": "google_email", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78544,11 +83613,11 @@ "deprecationReason": null }, { - "name": "filter", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78556,16 +83625,24 @@ "deprecationReason": null }, { - "name": "predicate", + "name": "processed_at", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -78578,77 +83655,64 @@ }, { "kind": "OBJECT", - "name": "sandbox_access_request_aggregate_fields", - "description": "aggregate fields of \"sandbox_access_request\"", + "name": "sandbox_access_request_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "count", + "name": "created_at", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "google_email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "processed_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "sandbox_access_request_max_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "user_id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "sandbox_access_request_min_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -78662,12 +83726,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_order_by", - "description": "order by aggregate values of table \"sandbox_access_request\"", + "name": "sandbox_access_request_min_order_by", + "description": "order by min() on columns of table \"sandbox_access_request\"", "fields": null, "inputFields": [ { - "name": "count", + "name": "created_at", "description": null, "type": { "kind": "ENUM", @@ -78679,11 +83743,11 @@ "deprecationReason": null }, { - "name": "max", + "name": "google_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_max_order_by", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78691,11 +83755,35 @@ "deprecationReason": null }, { - "name": "min", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_min_order_by", + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "processed_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78708,14 +83796,30 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"sandbox_access_request\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "sandbox_access_request_mutation_response", + "description": "response of any mutation on the table \"sandbox_access_request\"", + "fields": [ { - "name": "data", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -78726,54 +83830,38 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_insert_input", + "kind": "OBJECT", + "name": "sandbox_access_request", "ofType": null } } } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_on_conflict", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "description": "Boolean expression to filter rows from the table \"sandbox_access_request\". All fields are combined with a logical 'AND'.", + "name": "sandbox_access_request_on_conflict", + "description": "on_conflict condition type for table \"sandbox_access_request\"", "fields": null, "inputFields": [ { - "name": "_and", + "name": "constraint", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "sandbox_access_request_constraint", + "ofType": null } }, "defaultValue": null, @@ -78781,43 +83869,58 @@ "deprecationReason": null }, { - "name": "_not", + "name": "update_columns", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "_or", + "name": "where", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_order_by", + "description": "Ordering options when selecting data from \"sandbox_access_request\".", + "fields": null, + "inputFields": [ { "name": "accepted", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78828,8 +83931,8 @@ "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78840,8 +83943,8 @@ "name": "google_email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78852,8 +83955,8 @@ "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78864,8 +83967,8 @@ "name": "processed_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78877,7 +83980,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "user_order_by", "ofType": null }, "defaultValue": null, @@ -78888,8 +83991,8 @@ "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -78901,23 +84004,108 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_pk_columns_input", + "description": "primary key columns input for table: sandbox_access_request", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "ENUM", - "name": "sandbox_access_request_constraint", - "description": "unique or primary key constraints on table \"sandbox_access_request\"", + "name": "sandbox_access_request_select_column", + "description": "select columns of table \"sandbox_access_request\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "sandbox_access_request_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "accepted", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "unique_sandbox_access_request_user_id", - "description": "unique or primary key constraint on columns \"user_id\"", + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "google_email", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "processed_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns", + "description": "select \"sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"sandbox_access_request\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "accepted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns", + "description": "select \"sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"sandbox_access_request\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "accepted", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -78926,8 +84114,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_insert_input", - "description": "input type for inserting data into table \"sandbox_access_request\"", + "name": "sandbox_access_request_set_input", + "description": "input type for updating data in table \"sandbox_access_request\"", "fields": null, "inputFields": [ { @@ -78991,23 +84179,50 @@ "deprecationReason": null }, { - "name": "user", + "name": "user_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "user_obj_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_stream_cursor_input", + "description": "Streaming cursor of the table \"sandbox_access_request\"", + "fields": null, + "inputFields": [ + { + "name": "initial_value", + "description": "Stream column input with initial value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_stream_cursor_value_input", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -79020,314 +84235,694 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "sandbox_access_request_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ + { + "name": "accepted", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "google_email", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "processed_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_max_order_by", - "description": "order by max() on columns of table \"sandbox_access_request\"", + "kind": "ENUM", + "name": "sandbox_access_request_update_column", + "description": "update columns of table \"sandbox_access_request\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "accepted", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "google_email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "processed_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "sandbox_access_request_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "google_email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "processed_at", - "description": null, - "args": [], + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_set_input", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, - "args": [], + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_min_order_by", - "description": "order by min() on columns of table \"sandbox_access_request\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "subscription_root", + "description": null, + "fields": [ { - "name": "created_at", - "description": null, + "name": "action", + "description": "fetch data from the table: \"action\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "google_email", - "description": null, + "name": "action_aggregate", + "description": "fetch aggregated fields from the table: \"action\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "action_by_pk", + "description": "fetch data from the table: \"action\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "action", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "processed_at", - "description": null, + "name": "action_legacy_stats_daily", + "description": "fetch data from the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "action_legacy_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_legacy_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_legacy_stats_daily_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sandbox_access_request_mutation_response", - "description": "response of any mutation on the table \"sandbox_access_request\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], + "name": "action_legacy_stats_daily_by_pk", + "description": "fetch data from the table: \"action_legacy_stats_daily\" using primary key columns", + "args": [ + { + "name": "action_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "OBJECT", + "name": "action_legacy_stats_daily", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_legacy_stats_daily_stream", + "description": "fetch data from the table in a streaming manner: \"action_legacy_stats_daily\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_legacy_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, @@ -79339,7 +84934,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "action_legacy_stats_daily", "ofType": null } } @@ -79347,38 +84942,104 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_on_conflict", - "description": "on_conflict condition type for table \"sandbox_access_request\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_constraint", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "update_columns", - "description": null, + "name": "action_stats", + "description": "execute function \"action_stats\" which returns \"action_stats_returning\"", + "args": [ + { + "name": "args", + "description": "input parameters for function \"action_stats\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -79389,536 +85050,720 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_update_column", + "kind": "OBJECT", + "name": "action_stats_returning", "ofType": null } } } }, - "defaultValue": "[]", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", - "description": "Ordering options when selecting data from \"sandbox_access_request\".", - "fields": null, - "inputFields": [ - { - "name": "accepted", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "google_email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processed_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "user_order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_pk_columns_input", - "description": "primary key columns input for table: sandbox_access_request", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "description": "select columns of table \"sandbox_access_request\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "accepted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "google_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processed_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"sandbox_access_request_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"sandbox_access_request\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "accepted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sandbox_access_request_select_column_sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"sandbox_access_request_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"sandbox_access_request\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "accepted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_set_input", - "description": "input type for updating data in table \"sandbox_access_request\"", - "fields": null, - "inputFields": [ - { - "name": "accepted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "google_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "action_stats_aggregate", + "description": "execute function \"action_stats\" and query aggregates on result of table type \"action_stats_returning\"", + "args": [ + { + "name": "args", + "description": "input parameters for function \"action_stats_aggregate\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_stats_returning_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "processed_at", - "description": null, + "name": "action_stats_returning", + "description": "fetch data from the table: \"action_stats_returning\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_stats_returning", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_stream_cursor_input", - "description": "Streaming cursor of the table \"sandbox_access_request\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "action_stats_returning_aggregate", + "description": "fetch aggregated fields from the table: \"action_stats_returning\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_stats_returning_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_stream_cursor_value_input", + "kind": "OBJECT", + "name": "action_stats_returning_aggregate", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "accepted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "action_stats_returning_by_pk", + "description": "fetch data from the table: \"action_stats_returning\" using primary key columns", + "args": [ + { + "name": "action_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "action_stats_returning", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "google_email", - "description": null, + "name": "action_stats_returning_stream", + "description": "fetch data from the table in a streaming manner: \"action_stats_returning\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_stats_returning_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_stats_returning", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, + "name": "action_stream", + "description": "fetch data from the table in a streaming manner: \"action\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "processed_at", - "description": null, + "name": "action_v4", + "description": "fetch data from the table: \"action_v4\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": null, + "name": "action_v4_aggregate", + "description": "fetch aggregated fields from the table: \"action_v4\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "action_v4_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_aggregate", + "ofType": null + } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sandbox_access_request_update_column", - "description": "update columns of table \"sandbox_access_request\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "accepted", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "google_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processed_at", - "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "action_v4_by_pk", + "description": "fetch data from the table: \"action_v4\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_set_input", + "kind": "OBJECT", + "name": "action_v4", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "description": null, - "fields": [ - { - "name": "action", - "description": "fetch data from the table: \"action\"", + "name": "action_v4_stats_daily", + "description": "fetch data from the table: \"action_v4_stats_daily\"", "args": [ { "name": "distinct_on", @@ -79931,7 +85776,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_select_column", + "name": "action_v4_stats_daily_select_column", "ofType": null } } @@ -79975,7 +85820,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_order_by", + "name": "action_v4_stats_daily_order_by", "ofType": null } } @@ -79989,7 +85834,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "name": "action_v4_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -80008,7 +85853,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action", + "name": "action_v4_stats_daily", "ofType": null } } @@ -80018,8 +85863,8 @@ "deprecationReason": null }, { - "name": "action_aggregate", - "description": "fetch aggregated fields from the table: \"action\"", + "name": "action_v4_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"action_v4_stats_daily\"", "args": [ { "name": "distinct_on", @@ -80032,7 +85877,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_select_column", + "name": "action_v4_stats_daily_select_column", "ofType": null } } @@ -80076,7 +85921,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_order_by", + "name": "action_v4_stats_daily_order_by", "ofType": null } } @@ -80090,7 +85935,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "name": "action_v4_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -80103,7 +85948,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_aggregate", + "name": "action_v4_stats_daily_aggregate", "ofType": null } }, @@ -80111,11 +85956,11 @@ "deprecationReason": null }, { - "name": "action_by_pk", - "description": "fetch data from the table: \"action\" using primary key columns", + "name": "action_v4_stats_daily_by_pk", + "description": "fetch data from the table: \"action_v4_stats_daily\" using primary key columns", "args": [ { - "name": "id", + "name": "action_v4_id", "description": null, "type": { "kind": "NON_NULL", @@ -80129,29 +85974,118 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "date_utc", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "action", + "name": "action_v4_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_stats", - "description": "execute function \"action_stats\" which returns \"action_stats_returning\"", + "name": "action_v4_stats_daily_stream", + "description": "fetch data from the table in a streaming manner: \"action_v4_stats_daily\"", "args": [ { - "name": "args", - "description": "input parameters for function \"action_stats\"", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_args", + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stats_daily_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4_stats_daily", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_v4_stream", + "description": "fetch data from the table in a streaming manner: \"action_v4\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -80159,6 +86093,63 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "action_v4_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "action_v4_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "action_v4", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "admin_dashboard_inventory", + "description": null, + "args": [ { "name": "distinct_on", "description": "distinct select on columns", @@ -80170,7 +86161,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_stats_returning_select_column", + "name": "admin_dashboard_inventory_enum_name", "ofType": null } } @@ -80214,7 +86205,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_order_by", + "name": "admin_dashboard_inventory_order_by", "ofType": null } } @@ -80228,7 +86219,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "admin_dashboard_inventory_bool_exp_bool_exp", "ofType": null }, "defaultValue": null, @@ -80247,7 +86238,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_stats_returning", + "name": "admin_dashboard_inventory", "ofType": null } } @@ -80257,25 +86248,110 @@ "deprecationReason": null }, { - "name": "action_stats_aggregate", - "description": "execute function \"action_stats\" and query aggregates on result of table type \"action_stats_returning\"", + "name": "admin_dashboard_queues", + "description": null, "args": [ { - "name": "args", - "description": "input parameters for function \"action_stats_aggregate\"", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "action_stats_args", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "admin_dashboard_queue_enum_name", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_order_by", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "admin_dashboard_queue_bool_exp_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "admin_dashboard_queue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "admin_rp_inventory", + "description": null, + "args": [ { "name": "distinct_on", "description": "distinct select on columns", @@ -80287,7 +86363,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_stats_returning_select_column", + "name": "admin_rp_inventory_enum_name", "ofType": null } } @@ -80331,7 +86407,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_order_by", + "name": "admin_rp_inventory_order_by", "ofType": null } } @@ -80345,7 +86421,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "admin_rp_inventory_bool_exp_bool_exp", "ofType": null }, "defaultValue": null, @@ -80357,17 +86433,25 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "action_stats_returning_aggregate", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "admin_rp_inventory", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_stats_returning", - "description": "fetch data from the table: \"action_stats_returning\"", + "name": "api_key", + "description": "fetch data from the table: \"api_key\"", "args": [ { "name": "distinct_on", @@ -80380,7 +86464,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_stats_returning_select_column", + "name": "api_key_select_column", "ofType": null } } @@ -80424,7 +86508,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_order_by", + "name": "api_key_order_by", "ofType": null } } @@ -80438,7 +86522,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -80457,7 +86541,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_stats_returning", + "name": "api_key", "ofType": null } } @@ -80467,8 +86551,8 @@ "deprecationReason": null }, { - "name": "action_stats_returning_aggregate", - "description": "fetch aggregated fields from the table: \"action_stats_returning\"", + "name": "api_key_aggregate", + "description": "fetch aggregated fields from the table: \"api_key\"", "args": [ { "name": "distinct_on", @@ -80481,7 +86565,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_stats_returning_select_column", + "name": "api_key_select_column", "ofType": null } } @@ -80525,7 +86609,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_order_by", + "name": "api_key_order_by", "ofType": null } } @@ -80539,7 +86623,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -80552,7 +86636,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_stats_returning_aggregate", + "name": "api_key_aggregate", "ofType": null } }, @@ -80560,11 +86644,11 @@ "deprecationReason": null }, { - "name": "action_stats_returning_by_pk", - "description": "fetch data from the table: \"action_stats_returning\" using primary key columns", + "name": "api_key_by_pk", + "description": "fetch data from the table: \"api_key\" using primary key columns", "args": [ { - "name": "action_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -80582,15 +86666,15 @@ ], "type": { "kind": "OBJECT", - "name": "action_stats_returning", + "name": "api_key", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_stats_returning_stream", - "description": "fetch data from the table in a streaming manner: \"action_stats_returning\"", + "name": "api_key_stream", + "description": "fetch data from the table in a streaming manner: \"api_key\"", "args": [ { "name": "batch_size", @@ -80619,7 +86703,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_stream_cursor_input", + "name": "api_key_stream_cursor_input", "ofType": null } } @@ -80633,7 +86717,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_stats_returning_bool_exp", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -80652,7 +86736,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_stats_returning", + "name": "api_key", "ofType": null } } @@ -80662,19 +86746,23 @@ "deprecationReason": null }, { - "name": "action_stream", - "description": "fetch data from the table in a streaming manner: \"action\"", + "name": "app", + "description": "fetch data from the table: \"app\"", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_select_column", + "ofType": null + } } }, "defaultValue": null, @@ -80682,17 +86770,41 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_stream_cursor_input", + "name": "app_order_by", "ofType": null } } @@ -80706,7 +86818,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_bool_exp", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -80725,7 +86837,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action", + "name": "app", "ofType": null } } @@ -80735,8 +86847,8 @@ "deprecationReason": null }, { - "name": "action_v4", - "description": "fetch data from the table: \"action_v4\"", + "name": "app_aggregate", + "description": "fetch aggregated fields from the table: \"app\"", "args": [ { "name": "distinct_on", @@ -80749,7 +86861,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_v4_select_column", + "name": "app_select_column", "ofType": null } } @@ -80793,7 +86905,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_v4_order_by", + "name": "app_order_by", "ofType": null } } @@ -80807,7 +86919,129 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", + "name": "app_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_by_pk", + "description": "fetch data from the table: \"app\" using primary key columns", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "app", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_daily_users", + "description": "fetch data from the table: \"app_daily_users\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_daily_users_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_daily_users_bool_exp", "ofType": null }, "defaultValue": null, @@ -80826,7 +87060,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_v4", + "name": "app_daily_users", "ofType": null } } @@ -80836,8 +87070,8 @@ "deprecationReason": null }, { - "name": "action_v4_aggregate", - "description": "fetch aggregated fields from the table: \"action_v4\"", + "name": "app_daily_users_aggregate", + "description": "fetch aggregated fields from the table: \"app_daily_users\"", "args": [ { "name": "distinct_on", @@ -80850,7 +87084,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "action_v4_select_column", + "name": "app_daily_users_select_column", "ofType": null } } @@ -80894,7 +87128,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_v4_order_by", + "name": "app_daily_users_order_by", "ofType": null } } @@ -80908,7 +87142,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", + "name": "app_daily_users_bool_exp", "ofType": null }, "defaultValue": null, @@ -80921,7 +87155,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_v4_aggregate", + "name": "app_daily_users_aggregate", "ofType": null } }, @@ -80929,11 +87163,43 @@ "deprecationReason": null }, { - "name": "action_v4_by_pk", - "description": "fetch data from the table: \"action_v4\" using primary key columns", + "name": "app_daily_users_by_pk", + "description": "fetch data from the table: \"app_daily_users\" using primary key columns", "args": [ { - "name": "id", + "name": "app_id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nullifier_hash", "description": null, "type": { "kind": "NON_NULL", @@ -80951,15 +87217,15 @@ ], "type": { "kind": "OBJECT", - "name": "action_v4", + "name": "app_daily_users", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_v4_stream", - "description": "fetch data from the table in a streaming manner: \"action_v4\"", + "name": "app_daily_users_stream", + "description": "fetch data from the table in a streaming manner: \"app_daily_users\"", "args": [ { "name": "batch_size", @@ -80988,7 +87254,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "action_v4_stream_cursor_input", + "name": "app_daily_users_stream_cursor_input", "ofType": null } } @@ -81002,7 +87268,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "action_v4_bool_exp", + "name": "app_daily_users_bool_exp", "ofType": null }, "defaultValue": null, @@ -81021,7 +87287,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "action_v4", + "name": "app_daily_users", "ofType": null } } @@ -81031,8 +87297,8 @@ "deprecationReason": null }, { - "name": "admin_dashboard_inventory", - "description": null, + "name": "app_metadata", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -81045,7 +87311,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "admin_dashboard_inventory_enum_name", + "name": "app_metadata_select_column", "ofType": null } } @@ -81089,7 +87355,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_order_by", + "name": "app_metadata_order_by", "ofType": null } } @@ -81103,7 +87369,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_inventory_bool_exp_bool_exp", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -81122,7 +87388,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "admin_dashboard_inventory", + "name": "app_metadata", "ofType": null } } @@ -81132,8 +87398,8 @@ "deprecationReason": null }, { - "name": "admin_dashboard_queues", - "description": null, + "name": "app_metadata_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -81146,7 +87412,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "admin_dashboard_queue_enum_name", + "name": "app_metadata_select_column", "ofType": null } } @@ -81190,7 +87456,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_order_by", + "name": "app_metadata_order_by", "ofType": null } } @@ -81204,7 +87470,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "admin_dashboard_queue_bool_exp_bool_exp", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -81216,82 +87482,75 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "admin_dashboard_queue", - "ofType": null - } - } + "kind": "OBJECT", + "name": "app_metadata_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "admin_rp_inventory", - "description": null, + "name": "app_metadata_by_pk", + "description": "fetch data from the table: \"app_metadata\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "admin_rp_inventory_enum_name", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_metadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_metadata_stream", + "description": "fetch data from the table in a streaming manner: \"app_metadata\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_order_by", + "name": "app_metadata_stream_cursor_input", "ofType": null } } @@ -81305,7 +87564,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "admin_rp_inventory_bool_exp_bool_exp", + "name": "app_metadata_bool_exp", "ofType": null }, "defaultValue": null, @@ -81324,7 +87583,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "admin_rp_inventory", + "name": "app_metadata", "ofType": null } } @@ -81334,8 +87593,8 @@ "deprecationReason": null }, { - "name": "api_key", - "description": "fetch data from the table: \"api_key\"", + "name": "app_rankings", + "description": "fetch data from the table: \"app_rankings\"", "args": [ { "name": "distinct_on", @@ -81348,7 +87607,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "api_key_select_column", + "name": "app_rankings_select_column", "ofType": null } } @@ -81392,7 +87651,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_order_by", + "name": "app_rankings_order_by", "ofType": null } } @@ -81406,7 +87665,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null }, "defaultValue": null, @@ -81425,7 +87684,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "api_key", + "name": "app_rankings", "ofType": null } } @@ -81435,8 +87694,8 @@ "deprecationReason": null }, { - "name": "api_key_aggregate", - "description": "fetch aggregated fields from the table: \"api_key\"", + "name": "app_rankings_aggregate", + "description": "fetch aggregated fields from the table: \"app_rankings\"", "args": [ { "name": "distinct_on", @@ -81449,7 +87708,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "api_key_select_column", + "name": "app_rankings_select_column", "ofType": null } } @@ -81493,7 +87752,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_order_by", + "name": "app_rankings_order_by", "ofType": null } } @@ -81507,7 +87766,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null }, "defaultValue": null, @@ -81520,7 +87779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "api_key_aggregate", + "name": "app_rankings_aggregate", "ofType": null } }, @@ -81528,8 +87787,8 @@ "deprecationReason": null }, { - "name": "api_key_by_pk", - "description": "fetch data from the table: \"api_key\" using primary key columns", + "name": "app_rankings_by_pk", + "description": "fetch data from the table: \"app_rankings\" using primary key columns", "args": [ { "name": "id", @@ -81550,15 +87809,15 @@ ], "type": { "kind": "OBJECT", - "name": "api_key", + "name": "app_rankings", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "api_key_stream", - "description": "fetch data from the table in a streaming manner: \"api_key\"", + "name": "app_rankings_stream", + "description": "fetch data from the table in a streaming manner: \"app_rankings\"", "args": [ { "name": "batch_size", @@ -81587,7 +87846,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_stream_cursor_input", + "name": "app_rankings_stream_cursor_input", "ofType": null } } @@ -81601,7 +87860,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "app_rankings_bool_exp", "ofType": null }, "defaultValue": null, @@ -81620,7 +87879,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "api_key", + "name": "app_rankings", "ofType": null } } @@ -81630,8 +87889,8 @@ "deprecationReason": null }, { - "name": "app", - "description": "fetch data from the table: \"app\"", + "name": "app_report", + "description": "fetch data from the table: \"app_report\"", "args": [ { "name": "distinct_on", @@ -81644,7 +87903,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_select_column", + "name": "app_report_select_column", "ofType": null } } @@ -81688,7 +87947,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_order_by", + "name": "app_report_order_by", "ofType": null } } @@ -81702,7 +87961,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -81721,7 +87980,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app", + "name": "app_report", "ofType": null } } @@ -81731,8 +87990,8 @@ "deprecationReason": null }, { - "name": "app_aggregate", - "description": "fetch aggregated fields from the table: \"app\"", + "name": "app_report_aggregate", + "description": "fetch aggregated fields from the table: \"app_report\"", "args": [ { "name": "distinct_on", @@ -81745,7 +88004,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_select_column", + "name": "app_report_select_column", "ofType": null } } @@ -81789,7 +88048,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_order_by", + "name": "app_report_order_by", "ofType": null } } @@ -81803,7 +88062,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -81816,7 +88075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_aggregate", + "name": "app_report_aggregate", "ofType": null } }, @@ -81824,37 +88083,8 @@ "deprecationReason": null }, { - "name": "app_by_pk", - "description": "fetch data from the table: \"app\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "app", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_daily_users", - "description": "fetch data from the table: \"app_daily_users\"", + "name": "app_report_appeal", + "description": "fetch data from the table: \"app_report_appeal\"", "args": [ { "name": "distinct_on", @@ -81867,7 +88097,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_daily_users_select_column", + "name": "app_report_appeal_select_column", "ofType": null } } @@ -81911,7 +88141,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_order_by", + "name": "app_report_appeal_order_by", "ofType": null } } @@ -81925,7 +88155,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", + "name": "app_report_appeal_bool_exp", "ofType": null }, "defaultValue": null, @@ -81944,7 +88174,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_daily_users", + "name": "app_report_appeal", "ofType": null } } @@ -81954,8 +88184,8 @@ "deprecationReason": null }, { - "name": "app_daily_users_aggregate", - "description": "fetch aggregated fields from the table: \"app_daily_users\"", + "name": "app_report_appeal_aggregate", + "description": "fetch aggregated fields from the table: \"app_report_appeal\"", "args": [ { "name": "distinct_on", @@ -81968,7 +88198,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_daily_users_select_column", + "name": "app_report_appeal_select_column", "ofType": null } } @@ -82012,7 +88242,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_order_by", + "name": "app_report_appeal_order_by", "ofType": null } } @@ -82026,7 +88256,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", + "name": "app_report_appeal_bool_exp", "ofType": null }, "defaultValue": null, @@ -82039,7 +88269,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_daily_users_aggregate", + "name": "app_report_appeal_aggregate", "ofType": null } }, @@ -82047,11 +88277,11 @@ "deprecationReason": null }, { - "name": "app_daily_users_by_pk", - "description": "fetch data from the table: \"app_daily_users\" using primary key columns", + "name": "app_report_appeal_by_pk", + "description": "fetch data from the table: \"app_report_appeal\" using primary key columns", "args": [ { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -82065,16 +88295,29 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "app_report_appeal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_report_appeal_stream", + "description": "fetch data from the table in a streaming manner: \"app_report_appeal\"", + "args": [ { - "name": "date", - "description": null, + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "date", + "name": "Int", "ofType": null } }, @@ -82083,7 +88326,64 @@ "deprecationReason": null }, { - "name": "nullifier_hash", + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_report_appeal_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app_report_appeal", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "app_report_by_pk", + "description": "fetch data from the table: \"app_report\" using primary key columns", + "args": [ + { + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -82101,15 +88401,15 @@ ], "type": { "kind": "OBJECT", - "name": "app_daily_users", + "name": "app_report", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_daily_users_stream", - "description": "fetch data from the table in a streaming manner: \"app_daily_users\"", + "name": "app_report_stream", + "description": "fetch data from the table in a streaming manner: \"app_report\"", "args": [ { "name": "batch_size", @@ -82138,7 +88438,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_stream_cursor_input", + "name": "app_report_stream_cursor_input", "ofType": null } } @@ -82152,7 +88452,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_daily_users_bool_exp", + "name": "app_report_bool_exp", "ofType": null }, "defaultValue": null, @@ -82171,7 +88471,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_daily_users", + "name": "app_report", "ofType": null } } @@ -82181,8 +88481,8 @@ "deprecationReason": null }, { - "name": "app_metadata", - "description": "An array relationship", + "name": "app_reviews", + "description": "fetch data from the table: \"app_reviews\"", "args": [ { "name": "distinct_on", @@ -82195,7 +88495,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_metadata_select_column", + "name": "app_reviews_select_column", "ofType": null } } @@ -82239,7 +88539,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", + "name": "app_reviews_order_by", "ofType": null } } @@ -82253,7 +88553,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null }, "defaultValue": null, @@ -82272,7 +88572,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_metadata", + "name": "app_reviews", "ofType": null } } @@ -82282,8 +88582,8 @@ "deprecationReason": null }, { - "name": "app_metadata_aggregate", - "description": "An aggregate relationship", + "name": "app_reviews_aggregate", + "description": "fetch aggregated fields from the table: \"app_reviews\"", "args": [ { "name": "distinct_on", @@ -82296,7 +88596,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_metadata_select_column", + "name": "app_reviews_select_column", "ofType": null } } @@ -82340,7 +88640,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_order_by", + "name": "app_reviews_order_by", "ofType": null } } @@ -82354,7 +88654,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null }, "defaultValue": null, @@ -82367,7 +88667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_metadata_aggregate", + "name": "app_reviews_aggregate", "ofType": null } }, @@ -82375,8 +88675,8 @@ "deprecationReason": null }, { - "name": "app_metadata_by_pk", - "description": "fetch data from the table: \"app_metadata\" using primary key columns", + "name": "app_reviews_by_pk", + "description": "fetch data from the table: \"app_reviews\" using primary key columns", "args": [ { "name": "id", @@ -82397,15 +88697,15 @@ ], "type": { "kind": "OBJECT", - "name": "app_metadata", + "name": "app_reviews", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_metadata_stream", - "description": "fetch data from the table in a streaming manner: \"app_metadata\"", + "name": "app_reviews_stream", + "description": "fetch data from the table in a streaming manner: \"app_reviews\"", "args": [ { "name": "batch_size", @@ -82434,7 +88734,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_metadata_stream_cursor_input", + "name": "app_reviews_stream_cursor_input", "ofType": null } } @@ -82448,7 +88748,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_metadata_bool_exp", + "name": "app_reviews_bool_exp", "ofType": null }, "defaultValue": null, @@ -82467,7 +88767,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_metadata", + "name": "app_reviews", "ofType": null } } @@ -82477,8 +88777,8 @@ "deprecationReason": null }, { - "name": "app_rankings", - "description": "fetch data from the table: \"app_rankings\"", + "name": "app_stats", + "description": "fetch data from the table: \"app_stats\"", "args": [ { "name": "distinct_on", @@ -82491,7 +88791,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_rankings_select_column", + "name": "app_stats_select_column", "ofType": null } } @@ -82535,7 +88835,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_rankings_order_by", + "name": "app_stats_order_by", "ofType": null } } @@ -82549,7 +88849,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "name": "app_stats_bool_exp", "ofType": null }, "defaultValue": null, @@ -82568,7 +88868,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_rankings", + "name": "app_stats", "ofType": null } } @@ -82578,8 +88878,8 @@ "deprecationReason": null }, { - "name": "app_rankings_aggregate", - "description": "fetch aggregated fields from the table: \"app_rankings\"", + "name": "app_stats_aggregate", + "description": "fetch aggregated fields from the table: \"app_stats\"", "args": [ { "name": "distinct_on", @@ -82592,7 +88892,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_rankings_select_column", + "name": "app_stats_select_column", "ofType": null } } @@ -82636,7 +88936,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_rankings_order_by", + "name": "app_stats_order_by", "ofType": null } } @@ -82650,7 +88950,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "name": "app_stats_bool_exp", "ofType": null }, "defaultValue": null, @@ -82663,7 +88963,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_rankings_aggregate", + "name": "app_stats_aggregate", "ofType": null } }, @@ -82671,11 +88971,11 @@ "deprecationReason": null }, { - "name": "app_rankings_by_pk", - "description": "fetch data from the table: \"app_rankings\" using primary key columns", + "name": "app_stats_by_pk", + "description": "fetch data from the table: \"app_stats\" using primary key columns", "args": [ { - "name": "id", + "name": "app_id", "description": null, "type": { "kind": "NON_NULL", @@ -82689,19 +88989,35 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_rankings", + "name": "app_stats", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_rankings_stream", - "description": "fetch data from the table in a streaming manner: \"app_rankings\"", + "name": "app_stats_stream", + "description": "fetch data from the table in a streaming manner: \"app_stats\"", "args": [ { "name": "batch_size", @@ -82730,7 +89046,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_rankings_stream_cursor_input", + "name": "app_stats_stream_cursor_input", "ofType": null } } @@ -82744,7 +89060,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_rankings_bool_exp", + "name": "app_stats_bool_exp", "ofType": null }, "defaultValue": null, @@ -82763,7 +89079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_rankings", + "name": "app_stats", "ofType": null } } @@ -82773,8 +89089,81 @@ "deprecationReason": null }, { - "name": "app_report", - "description": "fetch data from the table: \"app_report\"", + "name": "app_stream", + "description": "fetch data from the table in a streaming manner: \"app\"", + "args": [ + { + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "cursor to stream the results returned by the query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_stream_cursor_input", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_code", + "description": "fetch data from the table: \"auth_code\"", "args": [ { "name": "distinct_on", @@ -82787,7 +89176,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_report_select_column", + "name": "auth_code_select_column", "ofType": null } } @@ -82831,7 +89220,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_order_by", + "name": "auth_code_order_by", "ofType": null } } @@ -82845,7 +89234,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "auth_code_bool_exp", "ofType": null }, "defaultValue": null, @@ -82864,7 +89253,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_report", + "name": "auth_code", "ofType": null } } @@ -82874,8 +89263,8 @@ "deprecationReason": null }, { - "name": "app_report_aggregate", - "description": "fetch aggregated fields from the table: \"app_report\"", + "name": "auth_code_aggregate", + "description": "fetch aggregated fields from the table: \"auth_code\"", "args": [ { "name": "distinct_on", @@ -82888,7 +89277,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_report_select_column", + "name": "auth_code_select_column", "ofType": null } } @@ -82932,7 +89321,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_order_by", + "name": "auth_code_order_by", "ofType": null } } @@ -82946,7 +89335,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "auth_code_bool_exp", "ofType": null }, "defaultValue": null, @@ -82959,7 +89348,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_report_aggregate", + "name": "auth_code_aggregate", "ofType": null } }, @@ -82967,65 +89356,66 @@ "deprecationReason": null }, { - "name": "app_report_appeal", - "description": "fetch data from the table: \"app_report_appeal\"", + "name": "auth_code_by_pk", + "description": "fetch data from the table: \"auth_code\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "id", + "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_report_appeal_select_column", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "auth_code", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auth_code_stream", + "description": "fetch data from the table in a streaming manner: \"auth_code\"", + "args": [ { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "batch_size", + "description": "maximum number of rows returned in a single batch", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "order_by", - "description": "sort the rows by one or more columns", + "name": "cursor", + "description": "cursor to stream the results returned by the query", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_order_by", + "name": "auth_code_stream_cursor_input", "ofType": null } } @@ -83039,7 +89429,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", + "name": "auth_code_bool_exp", "ofType": null }, "defaultValue": null, @@ -83058,7 +89448,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_report_appeal", + "name": "auth_code", "ofType": null } } @@ -83068,8 +89458,8 @@ "deprecationReason": null }, { - "name": "app_report_appeal_aggregate", - "description": "fetch aggregated fields from the table: \"app_report_appeal\"", + "name": "cache", + "description": "fetch data from the table: \"cache\"", "args": [ { "name": "distinct_on", @@ -83082,7 +89472,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_report_appeal_select_column", + "name": "cache_select_column", "ofType": null } } @@ -83126,7 +89516,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_order_by", + "name": "cache_order_by", "ofType": null } } @@ -83140,7 +89530,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", + "name": "cache_bool_exp", "ofType": null }, "defaultValue": null, @@ -83152,75 +89542,82 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "app_report_appeal_aggregate", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "cache", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_report_appeal_by_pk", - "description": "fetch data from the table: \"app_report_appeal\" using primary key columns", + "name": "cache_aggregate", + "description": "fetch aggregated fields from the table: \"cache\"", "args": [ { - "name": "id", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "cache_select_column", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "app_report_appeal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_report_appeal_stream", - "description": "fetch data from the table in a streaming manner: \"app_report_appeal\"", - "args": [ + }, { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_stream_cursor_input", + "name": "cache_order_by", "ofType": null } } @@ -83234,7 +89631,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_appeal_bool_exp", + "name": "cache_bool_exp", "ofType": null }, "defaultValue": null, @@ -83246,25 +89643,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_report_appeal", - "ofType": null - } - } + "kind": "OBJECT", + "name": "cache_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_report_by_pk", - "description": "fetch data from the table: \"app_report\" using primary key columns", + "name": "cache_by_pk", + "description": "fetch data from the table: \"cache\" using primary key columns", "args": [ { "name": "id", @@ -83285,15 +89674,15 @@ ], "type": { "kind": "OBJECT", - "name": "app_report", + "name": "cache", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_report_stream", - "description": "fetch data from the table in a streaming manner: \"app_report\"", + "name": "cache_stream", + "description": "fetch data from the table in a streaming manner: \"cache\"", "args": [ { "name": "batch_size", @@ -83322,7 +89711,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_report_stream_cursor_input", + "name": "cache_stream_cursor_input", "ofType": null } } @@ -83336,7 +89725,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_report_bool_exp", + "name": "cache_bool_exp", "ofType": null }, "defaultValue": null, @@ -83355,7 +89744,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_report", + "name": "cache", "ofType": null } } @@ -83365,8 +89754,8 @@ "deprecationReason": null }, { - "name": "app_reviews", - "description": "fetch data from the table: \"app_reviews\"", + "name": "invite", + "description": "fetch data from the table: \"invite\"", "args": [ { "name": "distinct_on", @@ -83379,7 +89768,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_reviews_select_column", + "name": "invite_select_column", "ofType": null } } @@ -83423,7 +89812,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_order_by", + "name": "invite_order_by", "ofType": null } } @@ -83437,7 +89826,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -83456,7 +89845,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_reviews", + "name": "invite", "ofType": null } } @@ -83466,8 +89855,8 @@ "deprecationReason": null }, { - "name": "app_reviews_aggregate", - "description": "fetch aggregated fields from the table: \"app_reviews\"", + "name": "invite_aggregate", + "description": "fetch aggregated fields from the table: \"invite\"", "args": [ { "name": "distinct_on", @@ -83480,7 +89869,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_reviews_select_column", + "name": "invite_select_column", "ofType": null } } @@ -83524,7 +89913,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_order_by", + "name": "invite_order_by", "ofType": null } } @@ -83538,7 +89927,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -83551,7 +89940,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_reviews_aggregate", + "name": "invite_aggregate", "ofType": null } }, @@ -83559,8 +89948,8 @@ "deprecationReason": null }, { - "name": "app_reviews_by_pk", - "description": "fetch data from the table: \"app_reviews\" using primary key columns", + "name": "invite_by_pk", + "description": "fetch data from the table: \"invite\" using primary key columns", "args": [ { "name": "id", @@ -83581,15 +89970,15 @@ ], "type": { "kind": "OBJECT", - "name": "app_reviews", + "name": "invite", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_reviews_stream", - "description": "fetch data from the table in a streaming manner: \"app_reviews\"", + "name": "invite_stream", + "description": "fetch data from the table in a streaming manner: \"invite\"", "args": [ { "name": "batch_size", @@ -83618,7 +90007,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_reviews_stream_cursor_input", + "name": "invite_stream_cursor_input", "ofType": null } } @@ -83632,7 +90021,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_reviews_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -83651,7 +90040,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_reviews", + "name": "invite", "ofType": null } } @@ -83661,8 +90050,8 @@ "deprecationReason": null }, { - "name": "app_stats", - "description": "fetch data from the table: \"app_stats\"", + "name": "jwks", + "description": "fetch data from the table: \"jwks\"", "args": [ { "name": "distinct_on", @@ -83675,7 +90064,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_stats_select_column", + "name": "jwks_select_column", "ofType": null } } @@ -83719,7 +90108,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_order_by", + "name": "jwks_order_by", "ofType": null } } @@ -83733,7 +90122,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "jwks_bool_exp", "ofType": null }, "defaultValue": null, @@ -83752,7 +90141,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_stats", + "name": "jwks", "ofType": null } } @@ -83762,8 +90151,8 @@ "deprecationReason": null }, { - "name": "app_stats_aggregate", - "description": "fetch aggregated fields from the table: \"app_stats\"", + "name": "jwks_aggregate", + "description": "fetch aggregated fields from the table: \"jwks\"", "args": [ { "name": "distinct_on", @@ -83776,7 +90165,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "app_stats_select_column", + "name": "jwks_select_column", "ofType": null } } @@ -83820,7 +90209,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stats_order_by", + "name": "jwks_order_by", "ofType": null } } @@ -83834,7 +90223,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", + "name": "jwks_bool_exp", "ofType": null }, "defaultValue": null, @@ -83847,7 +90236,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app_stats_aggregate", + "name": "jwks_aggregate", "ofType": null } }, @@ -83855,11 +90244,11 @@ "deprecationReason": null }, { - "name": "app_stats_by_pk", - "description": "fetch data from the table: \"app_stats\" using primary key columns", + "name": "jwks_by_pk", + "description": "fetch data from the table: \"jwks\" using primary key columns", "args": [ { - "name": "app_id", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -83873,108 +90262,19 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "date", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "app_stats", + "name": "jwks", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "app_stats_stream", - "description": "fetch data from the table in a streaming manner: \"app_stats\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_stats_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_stats_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_stats", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_stream", - "description": "fetch data from the table in a streaming manner: \"app\"", + "name": "jwks_stream", + "description": "fetch data from the table in a streaming manner: \"jwks\"", "args": [ { "name": "batch_size", @@ -84003,7 +90303,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "app_stream_cursor_input", + "name": "jwks_stream_cursor_input", "ofType": null } } @@ -84017,7 +90317,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "jwks_bool_exp", "ofType": null }, "defaultValue": null, @@ -84036,7 +90336,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "app", + "name": "jwks", "ofType": null } } @@ -84046,8 +90346,8 @@ "deprecationReason": null }, { - "name": "auth_code", - "description": "fetch data from the table: \"auth_code\"", + "name": "localisations", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -84060,7 +90360,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_code_select_column", + "name": "localisations_select_column", "ofType": null } } @@ -84104,7 +90404,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_code_order_by", + "name": "localisations_order_by", "ofType": null } } @@ -84118,7 +90418,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, @@ -84137,7 +90437,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_code", + "name": "localisations", "ofType": null } } @@ -84147,8 +90447,8 @@ "deprecationReason": null }, { - "name": "auth_code_aggregate", - "description": "fetch aggregated fields from the table: \"auth_code\"", + "name": "localisations_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -84161,7 +90461,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "auth_code_select_column", + "name": "localisations_select_column", "ofType": null } } @@ -84205,7 +90505,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_code_order_by", + "name": "localisations_order_by", "ofType": null } } @@ -84219,7 +90519,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, @@ -84232,7 +90532,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_code_aggregate", + "name": "localisations_aggregate", "ofType": null } }, @@ -84240,8 +90540,8 @@ "deprecationReason": null }, { - "name": "auth_code_by_pk", - "description": "fetch data from the table: \"auth_code\" using primary key columns", + "name": "localisations_by_pk", + "description": "fetch data from the table: \"localisations\" using primary key columns", "args": [ { "name": "id", @@ -84262,15 +90562,15 @@ ], "type": { "kind": "OBJECT", - "name": "auth_code", + "name": "localisations", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "auth_code_stream", - "description": "fetch data from the table in a streaming manner: \"auth_code\"", + "name": "localisations_stream", + "description": "fetch data from the table in a streaming manner: \"localisations\"", "args": [ { "name": "batch_size", @@ -84299,7 +90599,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "auth_code_stream_cursor_input", + "name": "localisations_stream_cursor_input", "ofType": null } } @@ -84313,7 +90613,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "auth_code_bool_exp", + "name": "localisations_bool_exp", "ofType": null }, "defaultValue": null, @@ -84332,7 +90632,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "auth_code", + "name": "localisations", "ofType": null } } @@ -84342,8 +90642,8 @@ "deprecationReason": null }, { - "name": "cache", - "description": "fetch data from the table: \"cache\"", + "name": "membership", + "description": "fetch data from the table: \"membership\"", "args": [ { "name": "distinct_on", @@ -84356,7 +90656,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "cache_select_column", + "name": "membership_select_column", "ofType": null } } @@ -84400,7 +90700,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "cache_order_by", + "name": "membership_order_by", "ofType": null } } @@ -84414,7 +90714,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -84433,7 +90733,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "cache", + "name": "membership", "ofType": null } } @@ -84443,8 +90743,8 @@ "deprecationReason": null }, { - "name": "cache_aggregate", - "description": "fetch aggregated fields from the table: \"cache\"", + "name": "membership_aggregate", + "description": "fetch aggregated fields from the table: \"membership\"", "args": [ { "name": "distinct_on", @@ -84457,7 +90757,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "cache_select_column", + "name": "membership_select_column", "ofType": null } } @@ -84501,7 +90801,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "cache_order_by", + "name": "membership_order_by", "ofType": null } } @@ -84515,7 +90815,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -84528,7 +90828,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "cache_aggregate", + "name": "membership_aggregate", "ofType": null } }, @@ -84536,8 +90836,8 @@ "deprecationReason": null }, { - "name": "cache_by_pk", - "description": "fetch data from the table: \"cache\" using primary key columns", + "name": "membership_by_pk", + "description": "fetch data from the table: \"membership\" using primary key columns", "args": [ { "name": "id", @@ -84558,15 +90858,15 @@ ], "type": { "kind": "OBJECT", - "name": "cache", + "name": "membership", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "cache_stream", - "description": "fetch data from the table in a streaming manner: \"cache\"", + "name": "membership_stream", + "description": "fetch data from the table in a streaming manner: \"membership\"", "args": [ { "name": "batch_size", @@ -84595,7 +90895,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "cache_stream_cursor_input", + "name": "membership_stream_cursor_input", "ofType": null } } @@ -84609,7 +90909,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "cache_bool_exp", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -84628,7 +90928,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "cache", + "name": "membership", "ofType": null } } @@ -84638,8 +90938,8 @@ "deprecationReason": null }, { - "name": "invite", - "description": "fetch data from the table: \"invite\"", + "name": "notification_log", + "description": "fetch data from the table: \"notification_log\"", "args": [ { "name": "distinct_on", @@ -84652,7 +90952,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "invite_select_column", + "name": "notification_log_select_column", "ofType": null } } @@ -84696,7 +90996,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_order_by", + "name": "notification_log_order_by", "ofType": null } } @@ -84710,7 +91010,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -84729,7 +91029,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "invite", + "name": "notification_log", "ofType": null } } @@ -84739,8 +91039,8 @@ "deprecationReason": null }, { - "name": "invite_aggregate", - "description": "fetch aggregated fields from the table: \"invite\"", + "name": "notification_log_aggregate", + "description": "fetch aggregated fields from the table: \"notification_log\"", "args": [ { "name": "distinct_on", @@ -84753,7 +91053,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "invite_select_column", + "name": "notification_log_select_column", "ofType": null } } @@ -84797,7 +91097,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_order_by", + "name": "notification_log_order_by", "ofType": null } } @@ -84811,7 +91111,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -84824,7 +91124,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "invite_aggregate", + "name": "notification_log_aggregate", "ofType": null } }, @@ -84832,8 +91132,8 @@ "deprecationReason": null }, { - "name": "invite_by_pk", - "description": "fetch data from the table: \"invite\" using primary key columns", + "name": "notification_log_by_pk", + "description": "fetch data from the table: \"notification_log\" using primary key columns", "args": [ { "name": "id", @@ -84854,15 +91154,15 @@ ], "type": { "kind": "OBJECT", - "name": "invite", + "name": "notification_log", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "invite_stream", - "description": "fetch data from the table in a streaming manner: \"invite\"", + "name": "notification_log_stream", + "description": "fetch data from the table in a streaming manner: \"notification_log\"", "args": [ { "name": "batch_size", @@ -84891,7 +91191,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "invite_stream_cursor_input", + "name": "notification_log_stream_cursor_input", "ofType": null } } @@ -84905,7 +91205,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", + "name": "notification_log_bool_exp", "ofType": null }, "defaultValue": null, @@ -84924,7 +91224,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "invite", + "name": "notification_log", "ofType": null } } @@ -84934,8 +91234,8 @@ "deprecationReason": null }, { - "name": "jwks", - "description": "fetch data from the table: \"jwks\"", + "name": "notification_log_wallet_address", + "description": "fetch data from the table: \"notification_log_wallet_address\"", "args": [ { "name": "distinct_on", @@ -84948,7 +91248,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "jwks_select_column", + "name": "notification_log_wallet_address_select_column", "ofType": null } } @@ -84992,7 +91292,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_order_by", + "name": "notification_log_wallet_address_order_by", "ofType": null } } @@ -85006,7 +91306,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -85025,7 +91325,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks", + "name": "notification_log_wallet_address", "ofType": null } } @@ -85035,8 +91335,8 @@ "deprecationReason": null }, { - "name": "jwks_aggregate", - "description": "fetch aggregated fields from the table: \"jwks\"", + "name": "notification_log_wallet_address_aggregate", + "description": "fetch aggregated fields from the table: \"notification_log_wallet_address\"", "args": [ { "name": "distinct_on", @@ -85049,7 +91349,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "jwks_select_column", + "name": "notification_log_wallet_address_select_column", "ofType": null } } @@ -85093,7 +91393,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_order_by", + "name": "notification_log_wallet_address_order_by", "ofType": null } } @@ -85107,7 +91407,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -85120,7 +91420,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks_aggregate", + "name": "notification_log_wallet_address_aggregate", "ofType": null } }, @@ -85128,8 +91428,8 @@ "deprecationReason": null }, { - "name": "jwks_by_pk", - "description": "fetch data from the table: \"jwks\" using primary key columns", + "name": "notification_log_wallet_address_by_pk", + "description": "fetch data from the table: \"notification_log_wallet_address\" using primary key columns", "args": [ { "name": "id", @@ -85150,15 +91450,15 @@ ], "type": { "kind": "OBJECT", - "name": "jwks", + "name": "notification_log_wallet_address", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "jwks_stream", - "description": "fetch data from the table in a streaming manner: \"jwks\"", + "name": "notification_log_wallet_address_stream", + "description": "fetch data from the table in a streaming manner: \"notification_log_wallet_address\"", "args": [ { "name": "batch_size", @@ -85187,7 +91487,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "jwks_stream_cursor_input", + "name": "notification_log_wallet_address_stream_cursor_input", "ofType": null } } @@ -85201,7 +91501,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "jwks_bool_exp", + "name": "notification_log_wallet_address_bool_exp", "ofType": null }, "defaultValue": null, @@ -85220,7 +91520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "jwks", + "name": "notification_log_wallet_address", "ofType": null } } @@ -85230,8 +91530,8 @@ "deprecationReason": null }, { - "name": "localisations", - "description": "An array relationship", + "name": "nullifier", + "description": "fetch data from the table: \"nullifier\"", "args": [ { "name": "distinct_on", @@ -85244,7 +91544,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "localisations_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -85288,7 +91588,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_order_by", + "name": "nullifier_order_by", "ofType": null } } @@ -85302,7 +91602,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -85321,7 +91621,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations", + "name": "nullifier", "ofType": null } } @@ -85331,8 +91631,8 @@ "deprecationReason": null }, { - "name": "localisations_aggregate", - "description": "An aggregate relationship", + "name": "nullifier_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier\"", "args": [ { "name": "distinct_on", @@ -85345,7 +91645,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "localisations_select_column", + "name": "nullifier_select_column", "ofType": null } } @@ -85389,7 +91689,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_order_by", + "name": "nullifier_order_by", "ofType": null } } @@ -85403,7 +91703,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -85416,7 +91716,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations_aggregate", + "name": "nullifier_aggregate", "ofType": null } }, @@ -85424,8 +91724,8 @@ "deprecationReason": null }, { - "name": "localisations_by_pk", - "description": "fetch data from the table: \"localisations\" using primary key columns", + "name": "nullifier_by_pk", + "description": "fetch data from the table: \"nullifier\" using primary key columns", "args": [ { "name": "id", @@ -85446,15 +91746,15 @@ ], "type": { "kind": "OBJECT", - "name": "localisations", + "name": "nullifier", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "localisations_stream", - "description": "fetch data from the table in a streaming manner: \"localisations\"", + "name": "nullifier_stream", + "description": "fetch data from the table in a streaming manner: \"nullifier\"", "args": [ { "name": "batch_size", @@ -85483,7 +91783,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "localisations_stream_cursor_input", + "name": "nullifier_stream_cursor_input", "ofType": null } } @@ -85497,7 +91797,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "localisations_bool_exp", + "name": "nullifier_bool_exp", "ofType": null }, "defaultValue": null, @@ -85516,7 +91816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "localisations", + "name": "nullifier", "ofType": null } } @@ -85526,8 +91826,8 @@ "deprecationReason": null }, { - "name": "membership", - "description": "fetch data from the table: \"membership\"", + "name": "nullifier_uses_seen", + "description": "fetch data from the table: \"nullifier_uses_seen\"", "args": [ { "name": "distinct_on", @@ -85540,7 +91840,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "membership_select_column", + "name": "nullifier_uses_seen_select_column", "ofType": null } } @@ -85584,7 +91884,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_order_by", + "name": "nullifier_uses_seen_order_by", "ofType": null } } @@ -85598,7 +91898,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -85617,7 +91917,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "membership", + "name": "nullifier_uses_seen", "ofType": null } } @@ -85627,8 +91927,8 @@ "deprecationReason": null }, { - "name": "membership_aggregate", - "description": "fetch aggregated fields from the table: \"membership\"", + "name": "nullifier_uses_seen_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier_uses_seen\"", "args": [ { "name": "distinct_on", @@ -85641,7 +91941,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "membership_select_column", + "name": "nullifier_uses_seen_select_column", "ofType": null } } @@ -85685,7 +91985,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_order_by", + "name": "nullifier_uses_seen_order_by", "ofType": null } } @@ -85699,7 +91999,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -85712,7 +92012,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "membership_aggregate", + "name": "nullifier_uses_seen_aggregate", "ofType": null } }, @@ -85720,11 +92020,11 @@ "deprecationReason": null }, { - "name": "membership_by_pk", - "description": "fetch data from the table: \"membership\" using primary key columns", + "name": "nullifier_uses_seen_by_pk", + "description": "fetch data from the table: \"nullifier_uses_seen\" using primary key columns", "args": [ { - "name": "id", + "name": "nullifier_hash", "description": null, "type": { "kind": "NON_NULL", @@ -85742,15 +92042,15 @@ ], "type": { "kind": "OBJECT", - "name": "membership", + "name": "nullifier_uses_seen", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "membership_stream", - "description": "fetch data from the table in a streaming manner: \"membership\"", + "name": "nullifier_uses_seen_stream", + "description": "fetch data from the table in a streaming manner: \"nullifier_uses_seen\"", "args": [ { "name": "batch_size", @@ -85779,7 +92079,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "membership_stream_cursor_input", + "name": "nullifier_uses_seen_stream_cursor_input", "ofType": null } } @@ -85793,7 +92093,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "nullifier_uses_seen_bool_exp", "ofType": null }, "defaultValue": null, @@ -85812,7 +92112,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "membership", + "name": "nullifier_uses_seen", "ofType": null } } @@ -85822,8 +92122,8 @@ "deprecationReason": null }, { - "name": "notification_log", - "description": "fetch data from the table: \"notification_log\"", + "name": "nullifier_v4", + "description": "fetch data from the table: \"nullifier_v4\"", "args": [ { "name": "distinct_on", @@ -85836,7 +92136,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_select_column", + "name": "nullifier_v4_select_column", "ofType": null } } @@ -85880,7 +92180,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_order_by", + "name": "nullifier_v4_order_by", "ofType": null } } @@ -85894,7 +92194,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "nullifier_v4_bool_exp", "ofType": null }, "defaultValue": null, @@ -85913,7 +92213,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier_v4", "ofType": null } } @@ -85923,8 +92223,8 @@ "deprecationReason": null }, { - "name": "notification_log_aggregate", - "description": "fetch aggregated fields from the table: \"notification_log\"", + "name": "nullifier_v4_aggregate", + "description": "fetch aggregated fields from the table: \"nullifier_v4\"", "args": [ { "name": "distinct_on", @@ -85937,7 +92237,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_select_column", + "name": "nullifier_v4_select_column", "ofType": null } } @@ -85981,7 +92281,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_order_by", + "name": "nullifier_v4_order_by", "ofType": null } } @@ -85995,7 +92295,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "nullifier_v4_bool_exp", "ofType": null }, "defaultValue": null, @@ -86008,7 +92308,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_aggregate", + "name": "nullifier_v4_aggregate", "ofType": null } }, @@ -86016,8 +92316,8 @@ "deprecationReason": null }, { - "name": "notification_log_by_pk", - "description": "fetch data from the table: \"notification_log\" using primary key columns", + "name": "nullifier_v4_by_pk", + "description": "fetch data from the table: \"nullifier_v4\" using primary key columns", "args": [ { "name": "id", @@ -86038,15 +92338,15 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier_v4", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_stream", - "description": "fetch data from the table in a streaming manner: \"notification_log\"", + "name": "nullifier_v4_stream", + "description": "fetch data from the table in a streaming manner: \"nullifier_v4\"", "args": [ { "name": "batch_size", @@ -86075,7 +92375,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_stream_cursor_input", + "name": "nullifier_v4_stream_cursor_input", "ofType": null } } @@ -86089,7 +92389,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_bool_exp", + "name": "nullifier_v4_bool_exp", "ofType": null }, "defaultValue": null, @@ -86108,7 +92408,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log", + "name": "nullifier_v4", "ofType": null } } @@ -86118,8 +92418,8 @@ "deprecationReason": null }, { - "name": "notification_log_wallet_address", - "description": "fetch data from the table: \"notification_log_wallet_address\"", + "name": "redirect", + "description": "fetch data from the table: \"redirect\"", "args": [ { "name": "distinct_on", @@ -86132,7 +92432,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", + "name": "redirect_select_column", "ofType": null } } @@ -86176,7 +92476,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_order_by", + "name": "redirect_order_by", "ofType": null } } @@ -86190,7 +92490,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "redirect_bool_exp", "ofType": null }, "defaultValue": null, @@ -86209,7 +92509,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "redirect", "ofType": null } } @@ -86219,8 +92519,8 @@ "deprecationReason": null }, { - "name": "notification_log_wallet_address_aggregate", - "description": "fetch aggregated fields from the table: \"notification_log_wallet_address\"", + "name": "redirect_aggregate", + "description": "fetch aggregated fields from the table: \"redirect\"", "args": [ { "name": "distinct_on", @@ -86233,7 +92533,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "notification_log_wallet_address_select_column", + "name": "redirect_select_column", "ofType": null } } @@ -86277,7 +92577,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_order_by", + "name": "redirect_order_by", "ofType": null } } @@ -86291,7 +92591,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "redirect_bool_exp", "ofType": null }, "defaultValue": null, @@ -86304,7 +92604,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_wallet_address_aggregate", + "name": "redirect_aggregate", "ofType": null } }, @@ -86312,8 +92612,8 @@ "deprecationReason": null }, { - "name": "notification_log_wallet_address_by_pk", - "description": "fetch data from the table: \"notification_log_wallet_address\" using primary key columns", + "name": "redirect_by_pk", + "description": "fetch data from the table: \"redirect\" using primary key columns", "args": [ { "name": "id", @@ -86334,15 +92634,15 @@ ], "type": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "redirect", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "notification_log_wallet_address_stream", - "description": "fetch data from the table in a streaming manner: \"notification_log_wallet_address\"", + "name": "redirect_stream", + "description": "fetch data from the table in a streaming manner: \"redirect\"", "args": [ { "name": "batch_size", @@ -86371,7 +92671,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_stream_cursor_input", + "name": "redirect_stream_cursor_input", "ofType": null } } @@ -86385,7 +92685,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "notification_log_wallet_address_bool_exp", + "name": "redirect_bool_exp", "ofType": null }, "defaultValue": null, @@ -86404,7 +92704,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "notification_log_wallet_address", + "name": "redirect", "ofType": null } } @@ -86414,8 +92714,8 @@ "deprecationReason": null }, { - "name": "nullifier", - "description": "fetch data from the table: \"nullifier\"", + "name": "role", + "description": "fetch data from the table: \"role\"", "args": [ { "name": "distinct_on", @@ -86428,7 +92728,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_select_column", + "name": "role_select_column", "ofType": null } } @@ -86472,7 +92772,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_order_by", + "name": "role_order_by", "ofType": null } } @@ -86486,7 +92786,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "role_bool_exp", "ofType": null }, "defaultValue": null, @@ -86505,7 +92805,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier", + "name": "role", "ofType": null } } @@ -86515,8 +92815,8 @@ "deprecationReason": null }, { - "name": "nullifier_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier\"", + "name": "role_aggregate", + "description": "fetch aggregated fields from the table: \"role\"", "args": [ { "name": "distinct_on", @@ -86529,7 +92829,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_select_column", + "name": "role_select_column", "ofType": null } } @@ -86573,7 +92873,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_order_by", + "name": "role_order_by", "ofType": null } } @@ -86587,7 +92887,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "role_bool_exp", "ofType": null }, "defaultValue": null, @@ -86600,7 +92900,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_aggregate", + "name": "role_aggregate", "ofType": null } }, @@ -86608,11 +92908,11 @@ "deprecationReason": null }, { - "name": "nullifier_by_pk", - "description": "fetch data from the table: \"nullifier\" using primary key columns", + "name": "role_by_pk", + "description": "fetch data from the table: \"role\" using primary key columns", "args": [ { - "name": "id", + "name": "value", "description": null, "type": { "kind": "NON_NULL", @@ -86630,15 +92930,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier", + "name": "role", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_stream", - "description": "fetch data from the table in a streaming manner: \"nullifier\"", + "name": "role_stream", + "description": "fetch data from the table in a streaming manner: \"role\"", "args": [ { "name": "batch_size", @@ -86667,7 +92967,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_stream_cursor_input", + "name": "role_stream_cursor_input", "ofType": null } } @@ -86681,7 +92981,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_bool_exp", + "name": "role_bool_exp", "ofType": null }, "defaultValue": null, @@ -86700,7 +93000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier", + "name": "role", "ofType": null } } @@ -86710,8 +93010,8 @@ "deprecationReason": null }, { - "name": "nullifier_uses_seen", - "description": "fetch data from the table: \"nullifier_uses_seen\"", + "name": "rp_registration", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -86724,7 +93024,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", + "name": "rp_registration_select_column", "ofType": null } } @@ -86768,7 +93068,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_order_by", + "name": "rp_registration_order_by", "ofType": null } } @@ -86782,7 +93082,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null }, "defaultValue": null, @@ -86801,7 +93101,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "rp_registration", "ofType": null } } @@ -86811,8 +93111,8 @@ "deprecationReason": null }, { - "name": "nullifier_uses_seen_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier_uses_seen\"", + "name": "rp_registration_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -86825,7 +93125,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_uses_seen_select_column", + "name": "rp_registration_select_column", "ofType": null } } @@ -86869,7 +93169,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_order_by", + "name": "rp_registration_order_by", "ofType": null } } @@ -86883,7 +93183,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null }, "defaultValue": null, @@ -86896,7 +93196,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen_aggregate", + "name": "rp_registration_aggregate", "ofType": null } }, @@ -86904,11 +93204,11 @@ "deprecationReason": null }, { - "name": "nullifier_uses_seen_by_pk", - "description": "fetch data from the table: \"nullifier_uses_seen\" using primary key columns", + "name": "rp_registration_by_pk", + "description": "fetch data from the table: \"rp_registration\" using primary key columns", "args": [ { - "name": "nullifier_hash", + "name": "rp_id", "description": null, "type": { "kind": "NON_NULL", @@ -86926,15 +93226,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "rp_registration", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_uses_seen_stream", - "description": "fetch data from the table in a streaming manner: \"nullifier_uses_seen\"", + "name": "rp_registration_stream", + "description": "fetch data from the table in a streaming manner: \"rp_registration\"", "args": [ { "name": "batch_size", @@ -86963,7 +93263,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_stream_cursor_input", + "name": "rp_registration_stream_cursor_input", "ofType": null } } @@ -86977,7 +93277,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_uses_seen_bool_exp", + "name": "rp_registration_bool_exp", "ofType": null }, "defaultValue": null, @@ -86996,7 +93296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_uses_seen", + "name": "rp_registration", "ofType": null } } @@ -87006,8 +93306,8 @@ "deprecationReason": null }, { - "name": "nullifier_v4", - "description": "fetch data from the table: \"nullifier_v4\"", + "name": "sandbox_access_request", + "description": "fetch data from the table: \"sandbox_access_request\"", "args": [ { "name": "distinct_on", @@ -87020,7 +93320,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "sandbox_access_request_select_column", "ofType": null } } @@ -87064,7 +93364,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_order_by", + "name": "sandbox_access_request_order_by", "ofType": null } } @@ -87078,7 +93378,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -87097,7 +93397,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "sandbox_access_request", "ofType": null } } @@ -87107,8 +93407,8 @@ "deprecationReason": null }, { - "name": "nullifier_v4_aggregate", - "description": "fetch aggregated fields from the table: \"nullifier_v4\"", + "name": "sandbox_access_request_aggregate", + "description": "fetch aggregated fields from the table: \"sandbox_access_request\"", "args": [ { "name": "distinct_on", @@ -87121,7 +93421,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nullifier_v4_select_column", + "name": "sandbox_access_request_select_column", "ofType": null } } @@ -87165,7 +93465,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_order_by", + "name": "sandbox_access_request_order_by", "ofType": null } } @@ -87179,7 +93479,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -87192,7 +93492,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4_aggregate", + "name": "sandbox_access_request_aggregate", "ofType": null } }, @@ -87200,8 +93500,8 @@ "deprecationReason": null }, { - "name": "nullifier_v4_by_pk", - "description": "fetch data from the table: \"nullifier_v4\" using primary key columns", + "name": "sandbox_access_request_by_pk", + "description": "fetch data from the table: \"sandbox_access_request\" using primary key columns", "args": [ { "name": "id", @@ -87222,15 +93522,15 @@ ], "type": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "sandbox_access_request", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nullifier_v4_stream", - "description": "fetch data from the table in a streaming manner: \"nullifier_v4\"", + "name": "sandbox_access_request_stream", + "description": "fetch data from the table in a streaming manner: \"sandbox_access_request\"", "args": [ { "name": "batch_size", @@ -87259,7 +93559,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_stream_cursor_input", + "name": "sandbox_access_request_stream_cursor_input", "ofType": null } } @@ -87273,7 +93573,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nullifier_v4_bool_exp", + "name": "sandbox_access_request_bool_exp", "ofType": null }, "defaultValue": null, @@ -87292,7 +93592,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nullifier_v4", + "name": "sandbox_access_request", "ofType": null } } @@ -87302,8 +93602,8 @@ "deprecationReason": null }, { - "name": "redirect", - "description": "fetch data from the table: \"redirect\"", + "name": "team", + "description": "fetch data from the table: \"team\"", "args": [ { "name": "distinct_on", @@ -87316,7 +93616,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "redirect_select_column", + "name": "team_select_column", "ofType": null } } @@ -87360,7 +93660,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_order_by", + "name": "team_order_by", "ofType": null } } @@ -87374,7 +93674,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -87393,7 +93693,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "redirect", + "name": "team", "ofType": null } } @@ -87403,8 +93703,8 @@ "deprecationReason": null }, { - "name": "redirect_aggregate", - "description": "fetch aggregated fields from the table: \"redirect\"", + "name": "team_aggregate", + "description": "fetch aggregated fields from the table: \"team\"", "args": [ { "name": "distinct_on", @@ -87417,7 +93717,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "redirect_select_column", + "name": "team_select_column", "ofType": null } } @@ -87461,7 +93761,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_order_by", + "name": "team_order_by", "ofType": null } } @@ -87475,7 +93775,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -87488,7 +93788,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "redirect_aggregate", + "name": "team_aggregate", "ofType": null } }, @@ -87496,8 +93796,8 @@ "deprecationReason": null }, { - "name": "redirect_by_pk", - "description": "fetch data from the table: \"redirect\" using primary key columns", + "name": "team_by_pk", + "description": "fetch data from the table: \"team\" using primary key columns", "args": [ { "name": "id", @@ -87518,15 +93818,15 @@ ], "type": { "kind": "OBJECT", - "name": "redirect", + "name": "team", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "redirect_stream", - "description": "fetch data from the table in a streaming manner: \"redirect\"", + "name": "team_stream", + "description": "fetch data from the table in a streaming manner: \"team\"", "args": [ { "name": "batch_size", @@ -87555,7 +93855,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "redirect_stream_cursor_input", + "name": "team_stream_cursor_input", "ofType": null } } @@ -87569,7 +93869,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "redirect_bool_exp", + "name": "team_bool_exp", "ofType": null }, "defaultValue": null, @@ -87588,7 +93888,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "redirect", + "name": "team", "ofType": null } } @@ -87598,8 +93898,8 @@ "deprecationReason": null }, { - "name": "role", - "description": "fetch data from the table: \"role\"", + "name": "user", + "description": "fetch data from the table: \"user\"", "args": [ { "name": "distinct_on", @@ -87612,7 +93912,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "role_select_column", + "name": "user_select_column", "ofType": null } } @@ -87656,7 +93956,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_order_by", + "name": "user_order_by", "ofType": null } } @@ -87670,7 +93970,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "role_bool_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -87689,7 +93989,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "role", + "name": "user", "ofType": null } } @@ -87699,8 +93999,8 @@ "deprecationReason": null }, { - "name": "role_aggregate", - "description": "fetch aggregated fields from the table: \"role\"", + "name": "user_aggregate", + "description": "fetch aggregated fields from the table: \"user\"", "args": [ { "name": "distinct_on", @@ -87713,7 +94013,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "role_select_column", + "name": "user_select_column", "ofType": null } } @@ -87757,7 +94057,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_order_by", + "name": "user_order_by", "ofType": null } } @@ -87771,7 +94071,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "role_bool_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -87784,7 +94084,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "role_aggregate", + "name": "user_aggregate", "ofType": null } }, @@ -87792,11 +94092,11 @@ "deprecationReason": null }, { - "name": "role_by_pk", - "description": "fetch data from the table: \"role\" using primary key columns", + "name": "user_by_pk", + "description": "fetch data from the table: \"user\" using primary key columns", "args": [ { - "name": "value", + "name": "id", "description": null, "type": { "kind": "NON_NULL", @@ -87814,15 +94114,15 @@ ], "type": { "kind": "OBJECT", - "name": "role", + "name": "user", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role_stream", - "description": "fetch data from the table in a streaming manner: \"role\"", + "name": "user_stream", + "description": "fetch data from the table in a streaming manner: \"user\"", "args": [ { "name": "batch_size", @@ -87851,7 +94151,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "role_stream_cursor_input", + "name": "user_stream_cursor_input", "ofType": null } } @@ -87865,7 +94165,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "role_bool_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -87884,7 +94184,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "role", + "name": "user", "ofType": null } } @@ -87894,9 +94194,25 @@ "deprecationReason": null }, { - "name": "rp_registration", - "description": "An array relationship", + "name": "world_id_analytics_app_daily", + "description": "execute function \"world_id_analytics_app_daily\" which returns \"world_id_app_stats_daily\"", "args": [ + { + "name": "args", + "description": "input parameters for function \"world_id_analytics_app_daily\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_analytics_app_daily_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "distinct_on", "description": "distinct select on columns", @@ -87908,7 +94224,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "rp_registration_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -87952,7 +94268,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -87966,7 +94282,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -87985,7 +94301,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "rp_registration", + "name": "world_id_app_stats_daily", "ofType": null } } @@ -87995,9 +94311,25 @@ "deprecationReason": null }, { - "name": "rp_registration_aggregate", - "description": "An aggregate relationship", + "name": "world_id_analytics_app_daily_aggregate", + "description": "execute function \"world_id_analytics_app_daily\" and query aggregates on result of table type \"world_id_app_stats_daily\"", "args": [ + { + "name": "args", + "description": "input parameters for function \"world_id_analytics_app_daily_aggregate\"", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_analytics_app_daily_args", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "distinct_on", "description": "distinct select on columns", @@ -88009,7 +94341,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "rp_registration_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -88053,7 +94385,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "rp_registration_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -88067,7 +94399,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -88080,7 +94412,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "rp_registration_aggregate", + "name": "world_id_app_stats_daily_aggregate", "ofType": null } }, @@ -88088,110 +94420,8 @@ "deprecationReason": null }, { - "name": "rp_registration_by_pk", - "description": "fetch data from the table: \"rp_registration\" using primary key columns", - "args": [ - { - "name": "rp_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "rp_registration", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rp_registration_stream", - "description": "fetch data from the table in a streaming manner: \"rp_registration\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "rp_registration_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "rp_registration", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sandbox_access_request", - "description": "fetch data from the table: \"sandbox_access_request\"", + "name": "world_id_app_stats_daily", + "description": "fetch data from the table: \"world_id_app_stats_daily\"", "args": [ { "name": "distinct_on", @@ -88204,7 +94434,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "sandbox_access_request_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -88248,7 +94478,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -88262,7 +94492,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -88281,7 +94511,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "world_id_app_stats_daily", "ofType": null } } @@ -88291,8 +94521,8 @@ "deprecationReason": null }, { - "name": "sandbox_access_request_aggregate", - "description": "fetch aggregated fields from the table: \"sandbox_access_request\"", + "name": "world_id_app_stats_daily_aggregate", + "description": "fetch aggregated fields from the table: \"world_id_app_stats_daily\"", "args": [ { "name": "distinct_on", @@ -88305,7 +94535,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "sandbox_access_request_select_column", + "name": "world_id_app_stats_daily_select_column", "ofType": null } } @@ -88349,7 +94579,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", + "name": "world_id_app_stats_daily_order_by", "ofType": null } } @@ -88363,7 +94593,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -88376,7 +94606,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "sandbox_access_request_aggregate", + "name": "world_id_app_stats_daily_aggregate", "ofType": null } }, @@ -88384,18 +94614,18 @@ "deprecationReason": null }, { - "name": "sandbox_access_request_by_pk", - "description": "fetch data from the table: \"sandbox_access_request\" using primary key columns", + "name": "world_id_app_stats_daily_by_pk", + "description": "fetch data from the table: \"world_id_app_stats_daily\" using primary key columns", "args": [ { - "name": "id", + "name": "date_utc", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null } }, @@ -88406,15 +94636,15 @@ ], "type": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "world_id_app_stats_daily", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sandbox_access_request_stream", - "description": "fetch data from the table in a streaming manner: \"sandbox_access_request\"", + "name": "world_id_app_stats_daily_stream", + "description": "fetch data from the table in a streaming manner: \"world_id_app_stats_daily\"", "args": [ { "name": "batch_size", @@ -88443,7 +94673,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_stream_cursor_input", + "name": "world_id_app_stats_daily_stream_cursor_input", "ofType": null } } @@ -88457,7 +94687,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -88476,7 +94706,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "sandbox_access_request", + "name": "world_id_app_stats_daily", "ofType": null } } @@ -88484,10 +94714,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team", + "description": "columns and relationships of \"team\"", + "fields": [ { - "name": "team", - "description": "fetch data from the table: \"team\"", + "name": "api_keys", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -88500,7 +94741,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "team_select_column", + "name": "api_key_select_column", "ofType": null } } @@ -88544,7 +94785,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_order_by", + "name": "api_key_order_by", "ofType": null } } @@ -88558,7 +94799,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -88577,7 +94818,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "team", + "name": "api_key", "ofType": null } } @@ -88587,8 +94828,8 @@ "deprecationReason": null }, { - "name": "team_aggregate", - "description": "fetch aggregated fields from the table: \"team\"", + "name": "api_keys_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -88601,7 +94842,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "team_select_column", + "name": "api_key_select_column", "ofType": null } } @@ -88645,7 +94886,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_order_by", + "name": "api_key_order_by", "ofType": null } } @@ -88659,7 +94900,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "api_key_bool_exp", "ofType": null }, "defaultValue": null, @@ -88672,7 +94913,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "team_aggregate", + "name": "api_key_aggregate", "ofType": null } }, @@ -88680,48 +94921,124 @@ "deprecationReason": null }, { - "name": "team_by_pk", - "description": "fetch data from the table: \"team\" using primary key columns", + "name": "apps", + "description": "An array relationship", "args": [ { - "name": "id", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "app_order_by", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "team", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "app", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_stream", - "description": "fetch data from the table in a streaming manner: \"team\"", + "name": "apps_aggregate", + "description": "An aggregate relationship", "args": [ { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "app_select_column", + "ofType": null + } } }, "defaultValue": null, @@ -88729,17 +95046,41 @@ "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "team_stream_cursor_input", + "name": "app_order_by", "ofType": null } } @@ -88753,7 +95094,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "name": "app_bool_exp", "ofType": null }, "defaultValue": null, @@ -88765,25 +95106,61 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team", - "ofType": null - } - } + "kind": "OBJECT", + "name": "app_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", - "description": "fetch data from the table: \"user\"", + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invites", + "description": "An array relationship", "args": [ { "name": "distinct_on", @@ -88796,7 +95173,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "user_select_column", + "name": "invite_select_column", "ofType": null } } @@ -88840,7 +95217,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_order_by", + "name": "invite_order_by", "ofType": null } } @@ -88854,7 +95231,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -88873,7 +95250,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "user", + "name": "invite", "ofType": null } } @@ -88883,8 +95260,8 @@ "deprecationReason": null }, { - "name": "user_aggregate", - "description": "fetch aggregated fields from the table: \"user\"", + "name": "invites_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -88897,7 +95274,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "user_select_column", + "name": "invite_select_column", "ofType": null } } @@ -88941,7 +95318,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_order_by", + "name": "invite_order_by", "ofType": null } } @@ -88955,7 +95332,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "invite_bool_exp", "ofType": null }, "defaultValue": null, @@ -88968,7 +95345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "user_aggregate", + "name": "invite_aggregate", "ofType": null } }, @@ -88976,66 +95353,65 @@ "deprecationReason": null }, { - "name": "user_by_pk", - "description": "fetch data from the table: \"user\" using primary key columns", + "name": "memberships", + "description": "An array relationship", "args": [ { - "name": "id", - "description": null, + "name": "distinct_on", + "description": "distinct select on columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "user", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_stream", - "description": "fetch data from the table in a streaming manner: \"user\"", - "args": [ + }, { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", + "name": "limit", + "description": "limit the number of rows returned", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cursor", - "description": "cursor to stream the results returned by the query", + "name": "offset", + "description": "skip the first n rows. Use only with order_by", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "user_stream_cursor_input", + "name": "membership_order_by", "ofType": null } } @@ -89049,7 +95425,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -89068,7 +95444,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "user", + "name": "membership", "ofType": null } } @@ -89076,21 +95452,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team", - "description": "columns and relationships of \"team\"", - "fields": [ + }, { - "name": "api_keys", - "description": "An array relationship", + "name": "memberships_aggregate", + "description": "An aggregate relationship", "args": [ { "name": "distinct_on", @@ -89103,7 +95468,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "api_key_select_column", + "name": "membership_select_column", "ofType": null } } @@ -89147,7 +95512,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "api_key_order_by", + "name": "membership_order_by", "ofType": null } } @@ -89161,7 +95526,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -89169,6 +95534,85 @@ "deprecationReason": null } ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "membership_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_aggregate", + "description": "aggregated selection of \"team\"", + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_aggregate_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -89180,7 +95624,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "api_key", + "name": "team", "ofType": null } } @@ -89188,14 +95632,37 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_aggregate_fields", + "description": "aggregate fields of \"team\"", + "fields": [ + { + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_avg_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "api_keys_aggregate", - "description": "An aggregate relationship", + "name": "count", + "description": null, "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "columns", + "description": null, "type": { "kind": "LIST", "name": null, @@ -89204,7 +95671,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "api_key_select_column", + "name": "team_select_column", "ofType": null } } @@ -89214,55 +95681,11 @@ "deprecationReason": null }, { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", + "name": "distinct", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "api_key_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -89274,8 +95697,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "api_key_aggregate", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -89283,627 +95706,629 @@ "deprecationReason": null }, { - "name": "apps", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_min_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_stddev_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_stddev_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stddev_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_stddev_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sum", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_sum_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_pop", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_var_pop_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "var_samp", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_var_samp_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variance", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "team_variance_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_avg_fields", + "description": "aggregate avg on columns", + "fields": [ + { + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "description": "Boolean expression to filter rows from the table \"team\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ + { + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "name": "team_bool_exp", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "api_keys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "api_key_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "api_keys_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apps", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apps_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "app_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invites", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invites_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_owners_count", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "team_constraint", + "description": "unique or primary key constraints on table \"team\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "team_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_insert_input", + "description": "input type for inserting data into table \"team\"", + "fields": null, + "inputFields": [ + { + "name": "api_keys", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "api_key_arr_rel_insert_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "apps_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "app_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "app_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "apps", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "app_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "app_arr_rel_insert_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "deleted_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "invites", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "invite_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "invite", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "invite_arr_rel_insert_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "invites_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "invite_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "invite_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "memberships", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "invite_aggregate", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "membership_arr_rel_insert_input", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "memberships", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_max_fields", + "description": "aggregate max on columns", + "fields": [ + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "memberships_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "updated_at", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_min_fields", + "description": "aggregate min on columns", + "fields": [ + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -89937,13 +96362,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -89956,24 +96377,28 @@ }, { "kind": "OBJECT", - "name": "team_aggregate", - "description": "aggregated selection of \"team\"", + "name": "team_mutation_response", + "description": "response of any mutation on the table \"team\"", "fields": [ { - "name": "aggregate", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "team_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", @@ -90002,174 +96427,412 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "team_aggregate_fields", - "description": "aggregate fields of \"team\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "team_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"team\"", + "fields": null, + "inputFields": [ { - "name": "avg", + "name": "data", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_avg_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_insert_input", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "on_conflict", + "description": "upsert condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "team_on_conflict", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_on_conflict", + "description": "on_conflict condition type for table \"team\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "team_constraint", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "update_columns", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_max_fields", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "team_update_column", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_order_by", + "description": "Ordering options when selecting data from \"team\".", + "fields": null, + "inputFields": [ + { + "name": "api_keys_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "api_key_aggregate_order_by", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "apps_aggregate", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_min_fields", + "kind": "INPUT_OBJECT", + "name": "app_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invites_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "invite_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships_aggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_owners_count", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_pk_columns_input", + "description": "primary key columns input for table: team", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "team_select_column", + "description": "select columns of table \"team\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_set_input", + "description": "input type for updating data in table \"team\"", + "fields": null, + "inputFields": [ { - "name": "stddev", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_stddev_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_pop", + "name": "deleted_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_stddev_pop_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stddev_samp", + "name": "id", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_stddev_samp_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sum", + "name": "name", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_sum_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "var_pop", + "name": "updated_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "team_var_pop_fields", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "var_samp", - "description": null, + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", "args": [], "type": { - "kind": "OBJECT", - "name": "team_var_samp_fields", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "variance", - "description": null, + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", "args": [], "type": { - "kind": "OBJECT", - "name": "team_variance_fields", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -90183,8 +96846,8 @@ }, { "kind": "OBJECT", - "name": "team_avg_fields", - "description": "aggregate avg on columns", + "name": "team_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", "fields": [ { "name": "team_owners_count", @@ -90206,24 +96869,20 @@ }, { "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "description": "Boolean expression to filter rows from the table \"team\". All fields are combined with a logical 'AND'.", + "name": "team_stream_cursor_input", + "description": "Streaming cursor of the table \"team\"", "fields": null, "inputFields": [ { - "name": "_and", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_stream_cursor_value_input", + "ofType": null } }, "defaultValue": null, @@ -90231,43 +96890,46 @@ "deprecationReason": null }, { - "name": "_not", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { - "name": "_or", + "name": "created_at", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "api_keys", + "name": "deleted_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -90275,11 +96937,11 @@ "deprecationReason": null }, { - "name": "api_keys_aggregate", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -90287,11 +96949,11 @@ "deprecationReason": null }, { - "name": "apps", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_bool_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -90299,83 +96961,98 @@ "deprecationReason": null }, { - "name": "apps_aggregate", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_bool_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "created_at", - "description": null, + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "team_update_column", + "description": "update columns of table \"team\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "deleted_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "invites", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "invite_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "invites_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "invite_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "updated_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "team_updates", + "description": null, + "fields": null, + "inputFields": [ { - "name": "memberships", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "name": "team_set_input", "ofType": null }, "defaultValue": null, @@ -90383,87 +97060,117 @@ "deprecationReason": null }, { - "name": "memberships_aggregate", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "name", - "description": null, + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { "name": "team_owners_count", - "description": null, + "description": "A computed field that returns a quantity of team owners", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "team_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "updated_at", - "description": null, + "name": "team_owners_count", + "description": "A computed field that returns a quantity of team owners", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "team_constraint", - "description": "unique or primary key constraints on table \"team\"", + "kind": "SCALAR", + "name": "timestamp", + "description": null, "fields": null, "inputFields": null, "interfaces": null, - "enumValues": [ - { - "name": "team_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "team_insert_input", - "description": "input type for inserting data into table \"team\"", + "name": "timestamp_comparison_exp", + "description": "Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'.", "fields": null, "inputFields": [ { - "name": "api_keys", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_arr_rel_insert_input", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90471,11 +97178,11 @@ "deprecationReason": null }, { - "name": "apps", + "name": "_gt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "app_arr_rel_insert_input", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90483,11 +97190,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "_gte", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90495,23 +97202,31 @@ "deprecationReason": null }, { - "name": "deleted_at", + "name": "_in", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "_is_null", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -90519,11 +97234,11 @@ "deprecationReason": null }, { - "name": "invites", + "name": "_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "invite_arr_rel_insert_input", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90531,11 +97246,11 @@ "deprecationReason": null }, { - "name": "memberships", + "name": "_lte", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_arr_rel_insert_input", + "kind": "SCALAR", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90543,11 +97258,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "_neq", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamp", "ofType": null }, "defaultValue": null, @@ -90555,12 +97270,20 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "_nin", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -90572,119 +97295,185 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "team_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "SCALAR", + "name": "timestamptz", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "description": "Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "created_at", + "name": "_eq", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_is_null", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "_lt", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "_lte", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], + "name": "_neq", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "_nin", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "team_min_fields", - "description": "aggregate min on columns", + "name": "user", + "description": "columns and relationships of \"user\"", "fields": [ { - "name": "created_at", + "name": "auth0Id", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "email", "description": null, "args": [], "type": { @@ -90696,62 +97485,59 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", + "name": "ironclad_id", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "is_allow_tracking", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_mutation_response", - "description": "response of any mutation on the table \"team\"", - "fields": [ + }, { - "name": "affected_rows", - "description": "number of rows affected by the mutation", + "name": "is_subscribed", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -90759,9 +97545,86 @@ "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "memberships", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -90773,7 +97636,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "team", + "name": "membership", "ofType": null } } @@ -90781,77 +97644,209 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"team\"", - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, + "name": "memberships_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "membership_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "membership_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_insert_input", + "kind": "OBJECT", + "name": "membership_aggregate", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_on_conflict", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_on_conflict", - "description": "on_conflict condition type for table \"team\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", + "name": "name", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "team_constraint", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "posthog_id", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sandbox_access_requests", + "description": "An array relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -90862,245 +97857,330 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "team_update_column", + "kind": "OBJECT", + "name": "sandbox_access_request", "ofType": null } } } - }, - "defaultValue": "[]", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_order_by", - "description": "Ordering options when selecting data from \"team\".", - "fields": null, - "inputFields": [ - { - "name": "api_keys_aggregate", - "description": null, + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sandbox_access_requests_aggregate", + "description": "An aggregate relationship", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "sandbox_access_request_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": "limit the number of rows returned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": "skip the first n rows. Use only with order_by", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order_by", + "description": "sort the rows by one or more columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "api_key_aggregate_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sandbox_access_request_aggregate", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "apps_aggregate", - "description": null, + "name": "team", + "description": "An object relationship", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "app_aggregate_order_by", + "kind": "OBJECT", + "name": "team", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "team_id", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted_at", + "name": "updated_at", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "world_id_nullifier", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "user_aggregate", + "description": "aggregated selection of \"user\"", + "fields": [ { - "name": "invites_aggregate", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "invite_aggregate_order_by", + "kind": "OBJECT", + "name": "user_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "memberships_aggregate", + "name": "nodes", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "user", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "user_aggregate_fields", + "description": "aggregate fields of \"user\"", + "fields": [ { - "name": "name", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "user_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_owners_count", + "name": "max", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "user_max_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "min", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "user_min_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "team_pk_columns_input", - "description": "primary key columns input for table: team", + "name": "user_bool_exp", + "description": "Boolean expression to filter rows from the table \"user\". All fields are combined with a logical 'AND'.", "fields": null, "inputFields": [ { - "name": "id", + "name": "_and", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_select_column", - "description": "select columns of table \"team\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_set_input", - "description": "input type for updating data in table \"team\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, @@ -91108,23 +98188,31 @@ "deprecationReason": null }, { - "name": "deleted_at", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "auth0Id", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -91132,11 +98220,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -91144,142 +98232,35 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "email", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ - { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_stream_cursor_input", - "description": "Streaming cursor of the table \"team\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_stream_cursor_value_input", - "ofType": null - } - }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "id", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ + }, { - "name": "created_at", + "name": "ironclad_id", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, "defaultValue": null, @@ -91287,11 +98268,11 @@ "deprecationReason": null }, { - "name": "deleted_at", + "name": "is_allow_tracking", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -91299,11 +98280,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "is_subscribed", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", "ofType": null }, "defaultValue": null, @@ -91311,11 +98292,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "memberships", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "membership_bool_exp", "ofType": null }, "defaultValue": null, @@ -91323,98 +98304,59 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "memberships_aggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "membership_aggregate_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_update_column", - "description": "update columns of table \"team\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "deleted_at", - "description": "column name", + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "posthog_id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "name": "sandbox_access_requests", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_bool_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "sandbox_access_requests_aggregate", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "team_set_input", + "name": "sandbox_access_request_aggregate_bool_exp", "ofType": null }, "defaultValue": null, @@ -91422,117 +98364,105 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "team", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "team_bool_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ + }, { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], + "name": "team_id", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], + "name": "updated_at", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + }, { - "name": "team_owners_count", - "description": "A computed field that returns a quantity of team owners", - "args": [], + "name": "world_id_nullifier", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "SCALAR", - "name": "timestamp", - "description": null, + "kind": "ENUM", + "name": "user_constraint", + "description": "unique or primary key constraints on table \"user\"", "fields": null, "inputFields": null, "interfaces": null, - "enumValues": null, + "enumValues": [ + { + "name": "user_auth0Id_key", + "description": "unique or primary key constraint on columns \"auth0Id\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_email_key", + "description": "unique or primary key constraint on columns \"email\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_pkey", + "description": "unique or primary key constraint on columns \"id\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_posthog_id_key", + "description": "unique or primary key constraint on columns \"posthog_id\"", + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "description": "Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'.", + "name": "user_insert_input", + "description": "input type for inserting data into table \"user\"", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "auth0Id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "String", "ofType": null }, "defaultValue": null, @@ -91540,11 +98470,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "created_at", "description": null, "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -91552,11 +98482,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "email", "description": null, "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "String", "ofType": null }, "defaultValue": null, @@ -91564,31 +98494,23 @@ "deprecationReason": null }, { - "name": "_in", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "ironclad_id", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -91596,11 +98518,11 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "is_allow_tracking", "description": null, "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -91608,11 +98530,11 @@ "deprecationReason": null }, { - "name": "_lte", + "name": "is_subscribed", "description": null, "type": { "kind": "SCALAR", - "name": "timestamp", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -91620,11 +98542,11 @@ "deprecationReason": null }, { - "name": "_neq", + "name": "memberships", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamp", + "kind": "INPUT_OBJECT", + "name": "membership_arr_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -91632,52 +98554,23 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "timestamptz", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "description": "Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ + }, { - "name": "_eq", + "name": "posthog_id", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -91685,11 +98578,11 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "sandbox_access_requests", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "sandbox_access_request_arr_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -91697,11 +98590,11 @@ "deprecationReason": null }, { - "name": "_gte", + "name": "team", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "team_obj_rel_insert_input", "ofType": null }, "defaultValue": null, @@ -91709,31 +98602,23 @@ "deprecationReason": null }, { - "name": "_in", + "name": "team_id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", + "name": "updated_at", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -91741,73 +98626,65 @@ "deprecationReason": null }, { - "name": "_lt", + "name": "world_id_nullifier", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "user_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "_lte", + "name": "auth0Id", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_neq", + "name": "created_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_nin", + "name": "email", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "user", - "description": "columns and relationships of \"user\"", - "fields": [ + }, { - "name": "auth0Id", + "name": "id", "description": null, "args": [], "type": { @@ -91819,23 +98696,19 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "ironclad_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "name", "description": null, "args": [], "type": { @@ -91847,277 +98720,102 @@ "deprecationReason": null }, { - "name": "id", + "name": "posthog_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ironclad_id", + "name": "team_id", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allow_tracking", + "name": "updated_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "timestamptz", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_subscribed", + "name": "world_id_nullifier", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "user_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "memberships", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "auth0Id", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "memberships_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "membership_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "membership_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "created_at", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "membership_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "email", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", + "name": "id", "description": null, "args": [], "type": { @@ -92129,206 +98827,36 @@ "deprecationReason": null }, { - "name": "sandbox_access_requests", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "ironclad_id", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sandbox_access_requests_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sandbox_access_request_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_order_by", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "name": "name", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sandbox_access_request_aggregate", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "An object relationship", + "name": "posthog_id", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "team", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -92351,13 +98879,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -92382,24 +98906,28 @@ }, { "kind": "OBJECT", - "name": "user_aggregate", - "description": "aggregated selection of \"user\"", + "name": "user_mutation_response", + "description": "response of any mutation on the table \"user\"", "fields": [ { - "name": "aggregate", - "description": null, + "name": "affected_rows", + "description": "number of rows affected by the mutation", "args": [], "type": { - "kind": "OBJECT", - "name": "user_aggregate_fields", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, + "name": "returning", + "description": "data from the rows affected by the mutation", "args": [], "type": { "kind": "NON_NULL", @@ -92428,109 +98956,60 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "user_aggregate_fields", - "description": "aggregate fields of \"user\"", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "user_obj_rel_insert_input", + "description": "input type for inserting object relation for remote table \"user\"", + "fields": null, + "inputFields": [ { - "name": "count", + "name": "data", "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "user_select_column", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "user_insert_input", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "user_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "OBJECT", - "name": "user_min_fields", + "kind": "INPUT_OBJECT", + "name": "user_on_conflict", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "description": "Boolean expression to filter rows from the table \"user\". All fields are combined with a logical 'AND'.", + "name": "user_on_conflict", + "description": "on_conflict condition type for table \"user\"", "fields": null, "inputFields": [ { - "name": "_and", + "name": "constraint", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "user_constraint", + "ofType": null } }, "defaultValue": null, @@ -92538,55 +99017,58 @@ "deprecationReason": null }, { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_or", + "name": "update_columns", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "user_update_column", + "ofType": null + } } } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "auth0Id", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "user_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "user_order_by", + "description": "Ordering options when selecting data from \"user\".", + "fields": null, + "inputFields": [ { - "name": "created_at", + "name": "auth0Id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92594,11 +99076,11 @@ "deprecationReason": null }, { - "name": "email", + "name": "created_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92606,11 +99088,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92618,11 +99100,11 @@ "deprecationReason": null }, { - "name": "ironclad_id", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92630,11 +99112,11 @@ "deprecationReason": null }, { - "name": "is_allow_tracking", + "name": "ironclad_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92642,11 +99124,11 @@ "deprecationReason": null }, { - "name": "is_subscribed", + "name": "is_allow_tracking", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92654,11 +99136,11 @@ "deprecationReason": null }, { - "name": "memberships", + "name": "is_subscribed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92670,7 +99152,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "membership_aggregate_bool_exp", + "name": "membership_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -92681,8 +99163,8 @@ "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92693,8 +99175,8 @@ "name": "posthog_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92702,11 +99184,11 @@ "deprecationReason": null }, { - "name": "sandbox_access_requests", + "name": "sandbox_access_requests_aggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_bool_exp", + "name": "sandbox_access_request_aggregate_order_by", "ofType": null }, "defaultValue": null, @@ -92714,11 +99196,11 @@ "deprecationReason": null }, { - "name": "sandbox_access_requests_aggregate", + "name": "team", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_bool_exp", + "name": "team_order_by", "ofType": null }, "defaultValue": null, @@ -92726,11 +99208,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_bool_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92738,11 +99220,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -92750,24 +99232,39 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "world_id_nullifier", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "user_pk_columns_input", + "description": "primary key columns input for table: user", + "fields": null, + "inputFields": [ { - "name": "world_id_nullifier", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -92780,33 +99277,81 @@ }, { "kind": "ENUM", - "name": "user_constraint", - "description": "unique or primary key constraints on table \"user\"", + "name": "user_select_column", + "description": "select columns of table \"user\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "user_auth0Id_key", - "description": "unique or primary key constraint on columns \"auth0Id\"", + "name": "auth0Id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_email_key", - "description": "unique or primary key constraint on columns \"email\"", + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "email", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_posthog_id_key", - "description": "unique or primary key constraint on columns \"posthog_id\"", + "name": "id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ironclad_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_allow_tracking", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_subscribed", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "posthog_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "world_id_nullifier", + "description": "column name", "isDeprecated": false, "deprecationReason": null } @@ -92815,8 +99360,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "user_insert_input", - "description": "input type for inserting data into table \"user\"", + "name": "user_set_input", + "description": "input type for updating data in table \"user\"", "fields": null, "inputFields": [ { @@ -92903,18 +99448,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "memberships", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "membership_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "name", "description": null, @@ -92940,11 +99473,11 @@ "deprecationReason": null }, { - "name": "sandbox_access_requests", + "name": "team_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_arr_rel_insert_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -92952,11 +99485,11 @@ "deprecationReason": null }, { - "name": "team", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_obj_rel_insert_input", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -92964,7 +99497,7 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "world_id_nullifier", "description": null, "type": { "kind": "SCALAR", @@ -92974,25 +99507,40 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "user_stream_cursor_input", + "description": "Streaming cursor of the table \"user\"", + "fields": null, + "inputFields": [ { - "name": "updated_at", - "description": null, + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_id_nullifier", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -93005,432 +99553,255 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "user_max_fields", - "description": "aggregate max on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "user_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", + "fields": null, + "inputFields": [ { "name": "auth0Id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "email", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "ironclad_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "is_allow_tracking", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", + "name": "is_subscribed", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "name", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "world_id_nullifier", + "name": "posthog_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "user_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "auth0Id", + "name": "team_id", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "updated_at", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "world_id_nullifier", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "user_update_column", + "description": "update columns of table \"user\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "auth0Id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "ironclad_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "created_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "email", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "ironclad_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, + "name": "is_allow_tracking", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "world_id_nullifier", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "user_mutation_response", - "description": "response of any mutation on the table \"user\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "is_subscribed", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "user", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "user_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"user\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_insert_input", - "ofType": null - } - }, - "defaultValue": null, + "name": "name", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "user_on_conflict", - "ofType": null - }, - "defaultValue": null, + "name": "posthog_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "user_on_conflict", - "description": "on_conflict condition type for table \"user\"", - "fields": null, - "inputFields": [ + }, { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "user_constraint", - "ofType": null - } - }, - "defaultValue": null, + "name": "team_id", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "user_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]", + "name": "updated_at", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - }, - "defaultValue": null, + "name": "world_id_nullifier", + "description": "column name", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "user_order_by", - "description": "Ordering options when selecting data from \"user\".", + "name": "user_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "auth0Id", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "user_set_input", "ofType": null }, "defaultValue": null, @@ -93438,23 +99809,48 @@ "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "user_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "violation_enum", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "violation_enum_comparison_exp", + "description": "Boolean expression to compare columns of type \"violation_enum\". All fields are combined with logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "email", + "name": "_eq", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93462,11 +99858,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_gt", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93474,11 +99870,11 @@ "deprecationReason": null }, { - "name": "ironclad_id", + "name": "_gte", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93486,23 +99882,31 @@ "deprecationReason": null }, { - "name": "is_allow_tracking", + "name": "_in", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "violation_enum", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_subscribed", + "name": "_is_null", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -93510,11 +99914,11 @@ "deprecationReason": null }, { - "name": "memberships_aggregate", + "name": "_lt", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "membership_aggregate_order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93522,11 +99926,11 @@ "deprecationReason": null }, { - "name": "name", + "name": "_lte", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93534,11 +99938,11 @@ "deprecationReason": null }, { - "name": "posthog_id", + "name": "_neq", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "violation_enum", "ofType": null }, "defaultValue": null, @@ -93546,23 +99950,42 @@ "deprecationReason": null }, { - "name": "sandbox_access_requests_aggregate", + "name": "_nin", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "sandbox_access_request_aggregate_order_by", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "violation_enum", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_analytics_app_daily_args", + "description": null, + "fields": null, + "inputFields": [ { - "name": "team", + "name": "app_id_input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "team_order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93570,11 +99993,11 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "environment_input", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -93582,11 +100005,11 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "from_date_input", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -93594,11 +100017,11 @@ "deprecationReason": null }, { - "name": "world_id_nullifier", + "name": "through_date_input", "description": null, "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "SCALAR", + "name": "date", "ofType": null }, "defaultValue": null, @@ -93611,223 +100034,330 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "user_pk_columns_input", - "description": "primary key columns input for table: user", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "world_id_app_stats_daily", + "description": "Empty tracked return shape for the service-only app analytics SQL functions.", + "fields": [ { - "name": "id", + "name": "date_utc", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bigint", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "user_select_column", - "description": "select columns of table \"user\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "auth0Id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "world_id_app_stats_daily_aggregate", + "description": null, + "fields": [ { - "name": "ironclad_id", - "description": "column name", + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_aggregate_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allow_tracking", - "description": "column name", + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_aggregate_fields", + "description": "aggregate fields of \"world_id_app_stats_daily\"", + "fields": [ { - "name": "is_subscribed", - "description": "column name", + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_avg_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "column name", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "world_id_app_stats_daily_select_column", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinct", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", - "description": "column name", + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_max_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": "column name", + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "column name", + "name": "stddev", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "world_id_nullifier", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "user_set_input", - "description": "input type for updating data in table \"user\"", - "fields": null, - "inputFields": [ - { - "name": "auth0Id", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "stddev_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "sum", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_sum_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "var_pop", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_var_pop_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ironclad_id", + "name": "var_samp", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_var_samp_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allow_tracking", + "name": "variance", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "world_id_app_stats_daily_variance_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { - "name": "is_subscribed", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "description": "Boolean expression to filter rows from the table \"world_id_app_stats_daily\". All fields are combined with a logical 'AND'.", + "fields": null, + "inputFields": [ { - "name": "name", + "name": "_and", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", + "name": "_not", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, @@ -93835,23 +100365,31 @@ "deprecationReason": null }, { - "name": "team_id", + "name": "_or", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "date_utc", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", "ofType": null }, "defaultValue": null, @@ -93859,11 +100397,11 @@ "deprecationReason": null }, { - "name": "world_id_nullifier", + "name": "unique_count", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -93876,33 +100414,34 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "user_stream_cursor_input", - "description": "Streaming cursor of the table \"user\"", + "kind": "ENUM", + "name": "world_id_app_stats_daily_constraint", + "description": "unique or primary key constraints on table \"world_id_app_stats_daily\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null, + "name": "world_id_app_stats_daily_pkey", + "description": "unique or primary key constraint on columns \"date_utc\"", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_inc_input", + "description": "input type for incrementing numeric columns in table \"world_id_app_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "ordering", - "description": "cursor ordering", + "name": "unique_count", + "description": null, "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -93916,16 +100455,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "user_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "world_id_app_stats_daily_insert_input", + "description": "input type for inserting data into table \"world_id_app_stats_daily\"", "fields": null, "inputFields": [ { - "name": "auth0Id", + "name": "date_utc", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, "defaultValue": null, @@ -93933,107 +100472,218 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "unique_count", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_max_fields", + "description": "aggregate max on columns", + "fields": [ { - "name": "email", + "name": "date_utc", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "ironclad_id", + "name": "date_utc", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "date", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_allow_tracking", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "bigint", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_mutation_response", + "description": "response of any mutation on the table \"world_id_app_stats_daily\"", + "fields": [ + { + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "is_subscribed", + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "world_id_app_stats_daily", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_on_conflict", + "description": "on_conflict condition type for table \"world_id_app_stats_daily\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "world_id_app_stats_daily_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "update_columns", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "world_id_app_stats_daily_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_order_by", + "description": "Ordering options when selecting data from \"world_id_app_stats_daily\".", + "fields": null, + "inputFields": [ { - "name": "team_id", + "name": "date_utc", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -94041,24 +100691,39 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "unique_count", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_pk_columns_input", + "description": "primary key columns input for table: world_id_app_stats_daily", + "fields": null, + "inputFields": [ { - "name": "world_id_nullifier", + "name": "date_utc", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "date", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -94071,116 +100736,160 @@ }, { "kind": "ENUM", - "name": "user_update_column", - "description": "update columns of table \"user\"", + "name": "world_id_app_stats_daily_select_column", + "description": "select columns of table \"world_id_app_stats_daily\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "auth0Id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ironclad_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_allow_tracking", + "name": "date_utc", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "is_subscribed", + "name": "unique_count", "description": "column name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_set_input", + "description": "input type for updating data in table \"world_id_app_stats_daily\"", + "fields": null, + "inputFields": [ { - "name": "name", - "description": "column name", + "name": "date_utc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "date", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "posthog_id", - "description": "column name", + "name": "unique_count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "bigint", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_fields", + "description": "aggregate stddev on columns", + "fields": [ { - "name": "team_id", - "description": "column name", + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_pop_fields", + "description": "aggregate stddev_pop on columns", + "fields": [ { - "name": "updated_at", - "description": "column name", + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_stddev_samp_fields", + "description": "aggregate stddev_samp on columns", + "fields": [ { - "name": "world_id_nullifier", - "description": "column name", + "name": "unique_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "user_updates", - "description": null, + "name": "world_id_app_stats_daily_stream_cursor_input", + "description": "Streaming cursor of the table \"world_id_app_stats_daily\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "initial_value", + "description": "Stream column input with initial value", "type": { - "kind": "INPUT_OBJECT", - "name": "user_set_input", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_stream_cursor_value_input", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "ordering", + "description": "cursor ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "user_bool_exp", - "ofType": null - } + "kind": "ENUM", + "name": "cursor_ordering", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -94191,28 +100900,18 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "violation_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "violation_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"violation_enum\". All fields are combined with logical 'AND'.", + "name": "world_id_app_stats_daily_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "_eq", + "name": "date_utc", "description": null, "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "date", "ofType": null }, "defaultValue": null, @@ -94220,55 +100919,92 @@ "deprecationReason": null }, { - "name": "_gt", + "name": "unique_count", "description": null, "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "bigint", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_sum_fields", + "description": "aggregate sum on columns", + "fields": [ { - "name": "_gte", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "bigint", "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "world_id_app_stats_daily_update_column", + "description": "update columns of table \"world_id_app_stats_daily\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "date_utc", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "_in", - "description": null, + "name": "unique_count", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_updates", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_inc", + "description": "increments the numeric columns with given value of the filtered values", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "violation_enum", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_inc_input", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", - "description": null, + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_set_input", "ofType": null }, "defaultValue": null, @@ -94276,63 +101012,92 @@ "deprecationReason": null }, { - "name": "_lt", - "description": null, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "violation_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "world_id_app_stats_daily_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_var_pop_fields", + "description": "aggregate var_pop on columns", + "fields": [ { - "name": "_lte", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_var_samp_fields", + "description": "aggregate var_samp on columns", + "fields": [ { - "name": "_neq", + "name": "unique_count", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "violation_enum", + "name": "Float", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "world_id_app_stats_daily_variance_fields", + "description": "aggregate variance on columns", + "fields": [ { - "name": "_nin", + "name": "unique_count", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "violation_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null } diff --git a/web/graphql/graphql.ts b/web/graphql/graphql.ts index edfd5a8e2..41bc497f6 100644 --- a/web/graphql/graphql.ts +++ b/web/graphql/graphql.ts @@ -596,6 +596,220 @@ export type Action_Insert_Input = { webhook_uri?: InputMaybe; }; +/** columns and relationships of "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily = { + __typename?: "action_legacy_stats_daily"; + /** An object relationship */ + action: Action; + action_id: Scalars["String"]["output"]; + date_utc: Scalars["date"]["output"]; + unique_count: Scalars["bigint"]["output"]; +}; + +/** aggregated selection of "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Aggregate = { + __typename?: "action_legacy_stats_daily_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Aggregate_Fields = { + __typename?: "action_legacy_stats_daily_aggregate_fields"; + avg?: Maybe; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; + stddev?: Maybe; + stddev_pop?: Maybe; + stddev_samp?: Maybe; + sum?: Maybe; + var_pop?: Maybe; + var_samp?: Maybe; + variance?: Maybe; +}; + +/** aggregate fields of "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** aggregate avg on columns */ +export type Action_Legacy_Stats_Daily_Avg_Fields = { + __typename?: "action_legacy_stats_daily_avg_fields"; + unique_count?: Maybe; +}; + +/** Boolean expression to filter rows from the table "action_legacy_stats_daily". All fields are combined with a logical 'AND'. */ +export type Action_Legacy_Stats_Daily_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + action?: InputMaybe; + action_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** unique or primary key constraints on table "action_legacy_stats_daily" */ +export enum Action_Legacy_Stats_Daily_Constraint { + /** unique or primary key constraint on columns "action_id", "date_utc" */ + ActionLegacyStatsDailyPkey = "action_legacy_stats_daily_pkey", +} + +/** input type for incrementing numeric columns in table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Inc_Input = { + unique_count?: InputMaybe; +}; + +/** input type for inserting data into table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Insert_Input = { + action?: InputMaybe; + action_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Action_Legacy_Stats_Daily_Max_Fields = { + __typename?: "action_legacy_stats_daily_max_fields"; + action_id?: Maybe; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** aggregate min on columns */ +export type Action_Legacy_Stats_Daily_Min_Fields = { + __typename?: "action_legacy_stats_daily_min_fields"; + action_id?: Maybe; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** response of any mutation on the table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Mutation_Response = { + __typename?: "action_legacy_stats_daily_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_On_Conflict = { + constraint: Action_Legacy_Stats_Daily_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "action_legacy_stats_daily". */ +export type Action_Legacy_Stats_Daily_Order_By = { + action?: InputMaybe; + action_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** primary key columns input for table: action_legacy_stats_daily */ +export type Action_Legacy_Stats_Daily_Pk_Columns_Input = { + action_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + +/** select columns of table "action_legacy_stats_daily" */ +export enum Action_Legacy_Stats_Daily_Select_Column { + /** column name */ + ActionId = "action_id", + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +/** input type for updating data in table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Set_Input = { + action_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate stddev on columns */ +export type Action_Legacy_Stats_Daily_Stddev_Fields = { + __typename?: "action_legacy_stats_daily_stddev_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_pop on columns */ +export type Action_Legacy_Stats_Daily_Stddev_Pop_Fields = { + __typename?: "action_legacy_stats_daily_stddev_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_samp on columns */ +export type Action_Legacy_Stats_Daily_Stddev_Samp_Fields = { + __typename?: "action_legacy_stats_daily_stddev_samp_fields"; + unique_count?: Maybe; +}; + +/** Streaming cursor of the table "action_legacy_stats_daily" */ +export type Action_Legacy_Stats_Daily_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Action_Legacy_Stats_Daily_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Action_Legacy_Stats_Daily_Stream_Cursor_Value_Input = { + action_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate sum on columns */ +export type Action_Legacy_Stats_Daily_Sum_Fields = { + __typename?: "action_legacy_stats_daily_sum_fields"; + unique_count?: Maybe; +}; + +/** update columns of table "action_legacy_stats_daily" */ +export enum Action_Legacy_Stats_Daily_Update_Column { + /** column name */ + ActionId = "action_id", + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +export type Action_Legacy_Stats_Daily_Updates = { + /** increments the numeric columns with given value of the filtered values */ + _inc?: InputMaybe; + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Action_Legacy_Stats_Daily_Bool_Exp; +}; + +/** aggregate var_pop on columns */ +export type Action_Legacy_Stats_Daily_Var_Pop_Fields = { + __typename?: "action_legacy_stats_daily_var_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate var_samp on columns */ +export type Action_Legacy_Stats_Daily_Var_Samp_Fields = { + __typename?: "action_legacy_stats_daily_var_samp_fields"; + unique_count?: Maybe; +}; + +/** aggregate variance on columns */ +export type Action_Legacy_Stats_Daily_Variance_Fields = { + __typename?: "action_legacy_stats_daily_variance_fields"; + unique_count?: Maybe; +}; + /** aggregate max on columns */ export type Action_Max_Fields = { __typename?: "action_max_fields"; @@ -1563,6 +1777,220 @@ export type Action_V4_Set_Input = { updated_at?: InputMaybe; }; +/** columns and relationships of "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily = { + __typename?: "action_v4_stats_daily"; + /** An object relationship */ + action_v4: Action_V4; + action_v4_id: Scalars["String"]["output"]; + date_utc: Scalars["date"]["output"]; + unique_count: Scalars["bigint"]["output"]; +}; + +/** aggregated selection of "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Aggregate = { + __typename?: "action_v4_stats_daily_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Aggregate_Fields = { + __typename?: "action_v4_stats_daily_aggregate_fields"; + avg?: Maybe; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; + stddev?: Maybe; + stddev_pop?: Maybe; + stddev_samp?: Maybe; + sum?: Maybe; + var_pop?: Maybe; + var_samp?: Maybe; + variance?: Maybe; +}; + +/** aggregate fields of "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** aggregate avg on columns */ +export type Action_V4_Stats_Daily_Avg_Fields = { + __typename?: "action_v4_stats_daily_avg_fields"; + unique_count?: Maybe; +}; + +/** Boolean expression to filter rows from the table "action_v4_stats_daily". All fields are combined with a logical 'AND'. */ +export type Action_V4_Stats_Daily_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + action_v4?: InputMaybe; + action_v4_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** unique or primary key constraints on table "action_v4_stats_daily" */ +export enum Action_V4_Stats_Daily_Constraint { + /** unique or primary key constraint on columns "action_v4_id", "date_utc" */ + ActionV4StatsDailyPkey = "action_v4_stats_daily_pkey", +} + +/** input type for incrementing numeric columns in table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Inc_Input = { + unique_count?: InputMaybe; +}; + +/** input type for inserting data into table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Insert_Input = { + action_v4?: InputMaybe; + action_v4_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate max on columns */ +export type Action_V4_Stats_Daily_Max_Fields = { + __typename?: "action_v4_stats_daily_max_fields"; + action_v4_id?: Maybe; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** aggregate min on columns */ +export type Action_V4_Stats_Daily_Min_Fields = { + __typename?: "action_v4_stats_daily_min_fields"; + action_v4_id?: Maybe; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** response of any mutation on the table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Mutation_Response = { + __typename?: "action_v4_stats_daily_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_On_Conflict = { + constraint: Action_V4_Stats_Daily_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "action_v4_stats_daily". */ +export type Action_V4_Stats_Daily_Order_By = { + action_v4?: InputMaybe; + action_v4_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** primary key columns input for table: action_v4_stats_daily */ +export type Action_V4_Stats_Daily_Pk_Columns_Input = { + action_v4_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + +/** select columns of table "action_v4_stats_daily" */ +export enum Action_V4_Stats_Daily_Select_Column { + /** column name */ + ActionV4Id = "action_v4_id", + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +/** input type for updating data in table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Set_Input = { + action_v4_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate stddev on columns */ +export type Action_V4_Stats_Daily_Stddev_Fields = { + __typename?: "action_v4_stats_daily_stddev_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_pop on columns */ +export type Action_V4_Stats_Daily_Stddev_Pop_Fields = { + __typename?: "action_v4_stats_daily_stddev_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_samp on columns */ +export type Action_V4_Stats_Daily_Stddev_Samp_Fields = { + __typename?: "action_v4_stats_daily_stddev_samp_fields"; + unique_count?: Maybe; +}; + +/** Streaming cursor of the table "action_v4_stats_daily" */ +export type Action_V4_Stats_Daily_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: Action_V4_Stats_Daily_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type Action_V4_Stats_Daily_Stream_Cursor_Value_Input = { + action_v4_id?: InputMaybe; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate sum on columns */ +export type Action_V4_Stats_Daily_Sum_Fields = { + __typename?: "action_v4_stats_daily_sum_fields"; + unique_count?: Maybe; +}; + +/** update columns of table "action_v4_stats_daily" */ +export enum Action_V4_Stats_Daily_Update_Column { + /** column name */ + ActionV4Id = "action_v4_id", + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +export type Action_V4_Stats_Daily_Updates = { + /** increments the numeric columns with given value of the filtered values */ + _inc?: InputMaybe; + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: Action_V4_Stats_Daily_Bool_Exp; +}; + +/** aggregate var_pop on columns */ +export type Action_V4_Stats_Daily_Var_Pop_Fields = { + __typename?: "action_v4_stats_daily_var_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate var_samp on columns */ +export type Action_V4_Stats_Daily_Var_Samp_Fields = { + __typename?: "action_v4_stats_daily_var_samp_fields"; + unique_count?: Maybe; +}; + +/** aggregate variance on columns */ +export type Action_V4_Stats_Daily_Variance_Fields = { + __typename?: "action_v4_stats_daily_variance_fields"; + unique_count?: Maybe; +}; + /** Streaming cursor of the table "action_v4" */ export type Action_V4_Stream_Cursor_Input = { /** Stream column input with initial value */ @@ -6614,6 +7042,10 @@ export type Mutation_Root = { delete_action?: Maybe; /** delete single row from the table: "action" */ delete_action_by_pk?: Maybe; + /** delete data from the table: "action_legacy_stats_daily" */ + delete_action_legacy_stats_daily?: Maybe; + /** delete single row from the table: "action_legacy_stats_daily" */ + delete_action_legacy_stats_daily_by_pk?: Maybe; /** delete data from the table: "action_stats_returning" */ delete_action_stats_returning?: Maybe; /** delete single row from the table: "action_stats_returning" */ @@ -6622,6 +7054,10 @@ export type Mutation_Root = { delete_action_v4?: Maybe; /** delete single row from the table: "action_v4" */ delete_action_v4_by_pk?: Maybe; + /** delete data from the table: "action_v4_stats_daily" */ + delete_action_v4_stats_daily?: Maybe; + /** delete single row from the table: "action_v4_stats_daily" */ + delete_action_v4_stats_daily_by_pk?: Maybe; /** delete data from the table: "api_key" */ delete_api_key?: Maybe; /** delete single row from the table: "api_key" */ @@ -6727,8 +7163,16 @@ export type Mutation_Root = { delete_user?: Maybe; /** delete single row from the table: "user" */ delete_user_by_pk?: Maybe; + /** delete data from the table: "world_id_app_stats_daily" */ + delete_world_id_app_stats_daily?: Maybe; + /** delete single row from the table: "world_id_app_stats_daily" */ + delete_world_id_app_stats_daily_by_pk?: Maybe; /** insert data into the table: "action" */ insert_action?: Maybe; + /** insert data into the table: "action_legacy_stats_daily" */ + insert_action_legacy_stats_daily?: Maybe; + /** insert a single row into the table: "action_legacy_stats_daily" */ + insert_action_legacy_stats_daily_one?: Maybe; /** insert a single row into the table: "action" */ insert_action_one?: Maybe; /** insert data into the table: "action_stats_returning" */ @@ -6739,6 +7183,10 @@ export type Mutation_Root = { insert_action_v4?: Maybe; /** insert a single row into the table: "action_v4" */ insert_action_v4_one?: Maybe; + /** insert data into the table: "action_v4_stats_daily" */ + insert_action_v4_stats_daily?: Maybe; + /** insert a single row into the table: "action_v4_stats_daily" */ + insert_action_v4_stats_daily_one?: Maybe; /** insert data into the table: "api_key" */ insert_api_key?: Maybe; /** insert a single row into the table: "api_key" */ @@ -6843,6 +7291,10 @@ export type Mutation_Root = { insert_user?: Maybe; /** insert a single row into the table: "user" */ insert_user_one?: Maybe; + /** insert data into the table: "world_id_app_stats_daily" */ + insert_world_id_app_stats_daily?: Maybe; + /** insert a single row into the table: "world_id_app_stats_daily" */ + insert_world_id_app_stats_daily_one?: Maybe; invalidate_cache?: Maybe; /** Create invites and send emails */ invite_team_members?: Maybe; @@ -6858,6 +7310,8 @@ export type Mutation_Root = { retry_rp?: Maybe; /** execute VOLATILE function "rollup_app_stats" which returns "app_stats" */ rollup_app_stats: Array; + /** execute VOLATILE function "rollup_world_id_analytics" which returns "world_id_app_stats_daily" */ + rollup_world_id_analytics: Array; /** Rotate the signer key for an RP (Relying Party) */ rotate_signer_key?: Maybe; /** Switch an RP from managed to self-managed mode by transferring the on-chain manager key */ @@ -6870,6 +7324,14 @@ export type Mutation_Root = { update_action?: Maybe; /** update single row of the table: "action" */ update_action_by_pk?: Maybe; + /** update data of the table: "action_legacy_stats_daily" */ + update_action_legacy_stats_daily?: Maybe; + /** update single row of the table: "action_legacy_stats_daily" */ + update_action_legacy_stats_daily_by_pk?: Maybe; + /** update multiples rows of table: "action_legacy_stats_daily" */ + update_action_legacy_stats_daily_many?: Maybe< + Array> + >; /** update multiples rows of table: "action" */ update_action_many?: Maybe>>; /** update data of the table: "action_stats_returning" */ @@ -6886,6 +7348,14 @@ export type Mutation_Root = { update_action_v4_by_pk?: Maybe; /** update multiples rows of table: "action_v4" */ update_action_v4_many?: Maybe>>; + /** update data of the table: "action_v4_stats_daily" */ + update_action_v4_stats_daily?: Maybe; + /** update single row of the table: "action_v4_stats_daily" */ + update_action_v4_stats_daily_by_pk?: Maybe; + /** update multiples rows of table: "action_v4_stats_daily" */ + update_action_v4_stats_daily_many?: Maybe< + Array> + >; /** update data of the table: "api_key" */ update_api_key?: Maybe; /** update single row of the table: "api_key" */ @@ -7064,6 +7534,14 @@ export type Mutation_Root = { update_user_by_pk?: Maybe; /** update multiples rows of table: "user" */ update_user_many?: Maybe>>; + /** update data of the table: "world_id_app_stats_daily" */ + update_world_id_app_stats_daily?: Maybe; + /** update single row of the table: "world_id_app_stats_daily" */ + update_world_id_app_stats_daily_by_pk?: Maybe; + /** update multiples rows of table: "world_id_app_stats_daily" */ + update_world_id_app_stats_daily_many?: Maybe< + Array> + >; validate_localisation?: Maybe; /** Verify an App */ verify_app?: Maybe; @@ -7110,6 +7588,17 @@ export type Mutation_RootDelete_Action_By_PkArgs = { id: Scalars["String"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_Action_Legacy_Stats_DailyArgs = { + where: Action_Legacy_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Action_Legacy_Stats_Daily_By_PkArgs = { + action_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_Action_Stats_ReturningArgs = { where: Action_Stats_Returning_Bool_Exp; @@ -7130,6 +7619,17 @@ export type Mutation_RootDelete_Action_V4_By_PkArgs = { id: Scalars["String"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_Action_V4_Stats_DailyArgs = { + where: Action_V4_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_Action_V4_Stats_Daily_By_PkArgs = { + action_v4_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + /** mutation root */ export type Mutation_RootDelete_Api_KeyArgs = { where: Api_Key_Bool_Exp; @@ -7398,12 +7898,34 @@ export type Mutation_RootDelete_User_By_PkArgs = { id: Scalars["String"]["input"]; }; +/** mutation root */ +export type Mutation_RootDelete_World_Id_App_Stats_DailyArgs = { + where: World_Id_App_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootDelete_World_Id_App_Stats_Daily_By_PkArgs = { + date_utc: Scalars["date"]["input"]; +}; + /** mutation root */ export type Mutation_RootInsert_ActionArgs = { objects: Array; on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_Action_Legacy_Stats_DailyArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Action_Legacy_Stats_Daily_OneArgs = { + object: Action_Legacy_Stats_Daily_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_Action_OneArgs = { object: Action_Insert_Input; @@ -7434,6 +7956,18 @@ export type Mutation_RootInsert_Action_V4_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_Action_V4_Stats_DailyArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_Action_V4_Stats_Daily_OneArgs = { + object: Action_V4_Stats_Daily_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInsert_Api_KeyArgs = { objects: Array; @@ -7746,6 +8280,18 @@ export type Mutation_RootInsert_User_OneArgs = { on_conflict?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootInsert_World_Id_App_Stats_DailyArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + +/** mutation root */ +export type Mutation_RootInsert_World_Id_App_Stats_Daily_OneArgs = { + object: World_Id_App_Stats_Daily_Insert_Input; + on_conflict?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootInvite_Team_MembersArgs = { emails?: InputMaybe>; @@ -7797,6 +8343,16 @@ export type Mutation_RootRollup_App_StatsArgs = { where?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootRollup_World_Id_AnalyticsArgs = { + args: Rollup_World_Id_Analytics_Args; + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + /** mutation root */ export type Mutation_RootRotate_Signer_KeyArgs = { app_id: Scalars["String"]["input"]; @@ -7833,6 +8389,25 @@ export type Mutation_RootUpdate_Action_By_PkArgs = { pk_columns: Action_Pk_Columns_Input; }; +/** mutation root */ +export type Mutation_RootUpdate_Action_Legacy_Stats_DailyArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + where: Action_Legacy_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Action_Legacy_Stats_Daily_By_PkArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + pk_columns: Action_Legacy_Stats_Daily_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Action_Legacy_Stats_Daily_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_Action_ManyArgs = { updates: Array; @@ -7874,6 +8449,25 @@ export type Mutation_RootUpdate_Action_V4_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_Action_V4_Stats_DailyArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + where: Action_V4_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Action_V4_Stats_Daily_By_PkArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + pk_columns: Action_V4_Stats_Daily_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_Action_V4_Stats_Daily_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootUpdate_Api_KeyArgs = { _set?: InputMaybe; @@ -8350,6 +8944,25 @@ export type Mutation_RootUpdate_User_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_World_Id_App_Stats_DailyArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + where: World_Id_App_Stats_Daily_Bool_Exp; +}; + +/** mutation root */ +export type Mutation_RootUpdate_World_Id_App_Stats_Daily_By_PkArgs = { + _inc?: InputMaybe; + _set?: InputMaybe; + pk_columns: World_Id_App_Stats_Daily_Pk_Columns_Input; +}; + +/** mutation root */ +export type Mutation_RootUpdate_World_Id_App_Stats_Daily_ManyArgs = { + updates: Array; +}; + /** mutation root */ export type Mutation_RootValidate_LocalisationArgs = { app_metadata_id: Scalars["String"]["input"]; @@ -9647,6 +10260,12 @@ export type Query_Root = { action_aggregate: Action_Aggregate; /** fetch data from the table: "action" using primary key columns */ action_by_pk?: Maybe; + /** fetch data from the table: "action_legacy_stats_daily" */ + action_legacy_stats_daily: Array; + /** fetch aggregated fields from the table: "action_legacy_stats_daily" */ + action_legacy_stats_daily_aggregate: Action_Legacy_Stats_Daily_Aggregate; + /** fetch data from the table: "action_legacy_stats_daily" using primary key columns */ + action_legacy_stats_daily_by_pk?: Maybe; /** execute function "action_stats" which returns "action_stats_returning" */ action_stats: Array; /** execute function "action_stats" and query aggregates on result of table type "action_stats_returning" */ @@ -9663,6 +10282,12 @@ export type Query_Root = { action_v4_aggregate: Action_V4_Aggregate; /** fetch data from the table: "action_v4" using primary key columns */ action_v4_by_pk?: Maybe; + /** fetch data from the table: "action_v4_stats_daily" */ + action_v4_stats_daily: Array; + /** fetch aggregated fields from the table: "action_v4_stats_daily" */ + action_v4_stats_daily_aggregate: Action_V4_Stats_Daily_Aggregate; + /** fetch data from the table: "action_v4_stats_daily" using primary key columns */ + action_v4_stats_daily_by_pk?: Maybe; admin_dashboard_inventory: Array; admin_dashboard_queues: Array; admin_rp_inventory: Array; @@ -9829,6 +10454,16 @@ export type Query_Root = { user_aggregate: User_Aggregate; /** fetch data from the table: "user" using primary key columns */ user_by_pk?: Maybe; + /** execute function "world_id_analytics_app_daily" which returns "world_id_app_stats_daily" */ + world_id_analytics_app_daily: Array; + /** execute function "world_id_analytics_app_daily" and query aggregates on result of table type "world_id_app_stats_daily" */ + world_id_analytics_app_daily_aggregate: World_Id_App_Stats_Daily_Aggregate; + /** fetch data from the table: "world_id_app_stats_daily" */ + world_id_app_stats_daily: Array; + /** fetch aggregated fields from the table: "world_id_app_stats_daily" */ + world_id_app_stats_daily_aggregate: World_Id_App_Stats_Daily_Aggregate; + /** fetch data from the table: "world_id_app_stats_daily" using primary key columns */ + world_id_app_stats_daily_by_pk?: Maybe; }; export type Query_RootActionArgs = { @@ -9851,6 +10486,27 @@ export type Query_RootAction_By_PkArgs = { id: Scalars["String"]["input"]; }; +export type Query_RootAction_Legacy_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAction_Legacy_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAction_Legacy_Stats_Daily_By_PkArgs = { + action_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + export type Query_RootAction_StatsArgs = { args: Action_Stats_Args; distinct_on?: InputMaybe>; @@ -9909,6 +10565,27 @@ export type Query_RootAction_V4_By_PkArgs = { id: Scalars["String"]["input"]; }; +export type Query_RootAction_V4_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAction_V4_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootAction_V4_Stats_Daily_By_PkArgs = { + action_v4_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + export type Query_RootAdmin_Dashboard_InventoryArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -10488,6 +11165,44 @@ export type Query_RootUser_By_PkArgs = { id: Scalars["String"]["input"]; }; +export type Query_RootWorld_Id_Analytics_App_DailyArgs = { + args: World_Id_Analytics_App_Daily_Args; + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootWorld_Id_Analytics_App_Daily_AggregateArgs = { + args: World_Id_Analytics_App_Daily_Args; + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootWorld_Id_App_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootWorld_Id_App_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Query_RootWorld_Id_App_Stats_Daily_By_PkArgs = { + date_utc: Scalars["date"]["input"]; +}; + /** columns and relationships of "redirect" */ export type Redirect = { __typename?: "redirect"; @@ -10874,6 +11589,11 @@ export type Rollup_App_Stats_Args = { _until?: InputMaybe; }; +export type Rollup_World_Id_Analytics_Args = { + from_date?: InputMaybe; + to_date?: InputMaybe; +}; + /** columns and relationships of "rp_registration" */ export type Rp_Registration = { __typename?: "rp_registration"; @@ -11539,6 +12259,14 @@ export type Subscription_Root = { action_aggregate: Action_Aggregate; /** fetch data from the table: "action" using primary key columns */ action_by_pk?: Maybe; + /** fetch data from the table: "action_legacy_stats_daily" */ + action_legacy_stats_daily: Array; + /** fetch aggregated fields from the table: "action_legacy_stats_daily" */ + action_legacy_stats_daily_aggregate: Action_Legacy_Stats_Daily_Aggregate; + /** fetch data from the table: "action_legacy_stats_daily" using primary key columns */ + action_legacy_stats_daily_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "action_legacy_stats_daily" */ + action_legacy_stats_daily_stream: Array; /** execute function "action_stats" which returns "action_stats_returning" */ action_stats: Array; /** execute function "action_stats" and query aggregates on result of table type "action_stats_returning" */ @@ -11559,6 +12287,14 @@ export type Subscription_Root = { action_v4_aggregate: Action_V4_Aggregate; /** fetch data from the table: "action_v4" using primary key columns */ action_v4_by_pk?: Maybe; + /** fetch data from the table: "action_v4_stats_daily" */ + action_v4_stats_daily: Array; + /** fetch aggregated fields from the table: "action_v4_stats_daily" */ + action_v4_stats_daily_aggregate: Action_V4_Stats_Daily_Aggregate; + /** fetch data from the table: "action_v4_stats_daily" using primary key columns */ + action_v4_stats_daily_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "action_v4_stats_daily" */ + action_v4_stats_daily_stream: Array; /** fetch data from the table in a streaming manner: "action_v4" */ action_v4_stream: Array; admin_dashboard_inventory: Array; @@ -11772,6 +12508,18 @@ export type Subscription_Root = { user_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "user" */ user_stream: Array; + /** execute function "world_id_analytics_app_daily" which returns "world_id_app_stats_daily" */ + world_id_analytics_app_daily: Array; + /** execute function "world_id_analytics_app_daily" and query aggregates on result of table type "world_id_app_stats_daily" */ + world_id_analytics_app_daily_aggregate: World_Id_App_Stats_Daily_Aggregate; + /** fetch data from the table: "world_id_app_stats_daily" */ + world_id_app_stats_daily: Array; + /** fetch aggregated fields from the table: "world_id_app_stats_daily" */ + world_id_app_stats_daily_aggregate: World_Id_App_Stats_Daily_Aggregate; + /** fetch data from the table: "world_id_app_stats_daily" using primary key columns */ + world_id_app_stats_daily_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "world_id_app_stats_daily" */ + world_id_app_stats_daily_stream: Array; }; export type Subscription_RootActionArgs = { @@ -11794,6 +12542,33 @@ export type Subscription_RootAction_By_PkArgs = { id: Scalars["String"]["input"]; }; +export type Subscription_RootAction_Legacy_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAction_Legacy_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAction_Legacy_Stats_Daily_By_PkArgs = { + action_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + +export type Subscription_RootAction_Legacy_Stats_Daily_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootAction_StatsArgs = { args: Action_Stats_Args; distinct_on?: InputMaybe>; @@ -11864,6 +12639,33 @@ export type Subscription_RootAction_V4_By_PkArgs = { id: Scalars["String"]["input"]; }; +export type Subscription_RootAction_V4_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAction_V4_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootAction_V4_Stats_Daily_By_PkArgs = { + action_v4_id: Scalars["String"]["input"]; + date_utc: Scalars["date"]["input"]; +}; + +export type Subscription_RootAction_V4_Stats_Daily_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + export type Subscription_RootAction_V4_StreamArgs = { batch_size: Scalars["Int"]["input"]; cursor: Array>; @@ -12579,6 +13381,50 @@ export type Subscription_RootUser_StreamArgs = { where?: InputMaybe; }; +export type Subscription_RootWorld_Id_Analytics_App_DailyArgs = { + args: World_Id_Analytics_App_Daily_Args; + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootWorld_Id_Analytics_App_Daily_AggregateArgs = { + args: World_Id_Analytics_App_Daily_Args; + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootWorld_Id_App_Stats_DailyArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootWorld_Id_App_Stats_Daily_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + +export type Subscription_RootWorld_Id_App_Stats_Daily_By_PkArgs = { + date_utc: Scalars["date"]["input"]; +}; + +export type Subscription_RootWorld_Id_App_Stats_Daily_StreamArgs = { + batch_size: Scalars["Int"]["input"]; + cursor: Array>; + where?: InputMaybe; +}; + /** columns and relationships of "team" */ export type Team = { __typename?: "team"; @@ -13288,3 +14134,205 @@ export type Violation_Enum_Comparison_Exp = { _neq?: InputMaybe; _nin?: InputMaybe>; }; + +export type World_Id_Analytics_App_Daily_Args = { + app_id_input?: InputMaybe; + environment_input?: InputMaybe; + from_date_input?: InputMaybe; + through_date_input?: InputMaybe; +}; + +/** Empty tracked return shape for the service-only app analytics SQL functions. */ +export type World_Id_App_Stats_Daily = { + __typename?: "world_id_app_stats_daily"; + date_utc: Scalars["date"]["output"]; + unique_count: Scalars["bigint"]["output"]; +}; + +export type World_Id_App_Stats_Daily_Aggregate = { + __typename?: "world_id_app_stats_daily_aggregate"; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Aggregate_Fields = { + __typename?: "world_id_app_stats_daily_aggregate_fields"; + avg?: Maybe; + count: Scalars["Int"]["output"]; + max?: Maybe; + min?: Maybe; + stddev?: Maybe; + stddev_pop?: Maybe; + stddev_samp?: Maybe; + sum?: Maybe; + var_pop?: Maybe; + var_samp?: Maybe; + variance?: Maybe; +}; + +/** aggregate fields of "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** aggregate avg on columns */ +export type World_Id_App_Stats_Daily_Avg_Fields = { + __typename?: "world_id_app_stats_daily_avg_fields"; + unique_count?: Maybe; +}; + +/** Boolean expression to filter rows from the table "world_id_app_stats_daily". All fields are combined with a logical 'AND'. */ +export type World_Id_App_Stats_Daily_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** unique or primary key constraints on table "world_id_app_stats_daily" */ +export enum World_Id_App_Stats_Daily_Constraint { + /** unique or primary key constraint on columns "date_utc" */ + WorldIdAppStatsDailyPkey = "world_id_app_stats_daily_pkey", +} + +/** input type for incrementing numeric columns in table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Inc_Input = { + unique_count?: InputMaybe; +}; + +/** input type for inserting data into table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Insert_Input = { + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate max on columns */ +export type World_Id_App_Stats_Daily_Max_Fields = { + __typename?: "world_id_app_stats_daily_max_fields"; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** aggregate min on columns */ +export type World_Id_App_Stats_Daily_Min_Fields = { + __typename?: "world_id_app_stats_daily_min_fields"; + date_utc?: Maybe; + unique_count?: Maybe; +}; + +/** response of any mutation on the table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Mutation_Response = { + __typename?: "world_id_app_stats_daily_mutation_response"; + /** number of rows affected by the mutation */ + affected_rows: Scalars["Int"]["output"]; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_On_Conflict = { + constraint: World_Id_App_Stats_Daily_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "world_id_app_stats_daily". */ +export type World_Id_App_Stats_Daily_Order_By = { + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** primary key columns input for table: world_id_app_stats_daily */ +export type World_Id_App_Stats_Daily_Pk_Columns_Input = { + date_utc: Scalars["date"]["input"]; +}; + +/** select columns of table "world_id_app_stats_daily" */ +export enum World_Id_App_Stats_Daily_Select_Column { + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +/** input type for updating data in table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Set_Input = { + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate stddev on columns */ +export type World_Id_App_Stats_Daily_Stddev_Fields = { + __typename?: "world_id_app_stats_daily_stddev_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_pop on columns */ +export type World_Id_App_Stats_Daily_Stddev_Pop_Fields = { + __typename?: "world_id_app_stats_daily_stddev_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate stddev_samp on columns */ +export type World_Id_App_Stats_Daily_Stddev_Samp_Fields = { + __typename?: "world_id_app_stats_daily_stddev_samp_fields"; + unique_count?: Maybe; +}; + +/** Streaming cursor of the table "world_id_app_stats_daily" */ +export type World_Id_App_Stats_Daily_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: World_Id_App_Stats_Daily_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type World_Id_App_Stats_Daily_Stream_Cursor_Value_Input = { + date_utc?: InputMaybe; + unique_count?: InputMaybe; +}; + +/** aggregate sum on columns */ +export type World_Id_App_Stats_Daily_Sum_Fields = { + __typename?: "world_id_app_stats_daily_sum_fields"; + unique_count?: Maybe; +}; + +/** update columns of table "world_id_app_stats_daily" */ +export enum World_Id_App_Stats_Daily_Update_Column { + /** column name */ + DateUtc = "date_utc", + /** column name */ + UniqueCount = "unique_count", +} + +export type World_Id_App_Stats_Daily_Updates = { + /** increments the numeric columns with given value of the filtered values */ + _inc?: InputMaybe; + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: World_Id_App_Stats_Daily_Bool_Exp; +}; + +/** aggregate var_pop on columns */ +export type World_Id_App_Stats_Daily_Var_Pop_Fields = { + __typename?: "world_id_app_stats_daily_var_pop_fields"; + unique_count?: Maybe; +}; + +/** aggregate var_samp on columns */ +export type World_Id_App_Stats_Daily_Var_Samp_Fields = { + __typename?: "world_id_app_stats_daily_var_samp_fields"; + unique_count?: Maybe; +}; + +/** aggregate variance on columns */ +export type World_Id_App_Stats_Daily_Variance_Fields = { + __typename?: "world_id_app_stats_daily_variance_fields"; + unique_count?: Maybe; +}; diff --git a/web/package.json b/web/package.json index 4d171aeb5..cab381291 100644 --- a/web/package.json +++ b/web/package.json @@ -172,6 +172,7 @@ "test:e2e": "playwright test", "test:integration": "node tests/verifyHasuraIsUp.js && jest tests/integration --runInBand", "test:integration:server": "docker compose -f ../docker-compose-test.yaml up --abort-on-container-exit", + "test:world-id-analytics:fresh": "bash tests/world-id-analytics/run-fresh-stack.sh", "test:unit": "jest tests/unit lib/schema --maxWorkers=2", "typecheck": "tsc" }, diff --git a/web/tests/api/_rollup-world-id-analytics.test.ts b/web/tests/api/_rollup-world-id-analytics.test.ts new file mode 100644 index 000000000..aa4bdbe00 --- /dev/null +++ b/web/tests/api/_rollup-world-id-analytics.test.ts @@ -0,0 +1,238 @@ +import { POST } from "@/api/_rollup-world-id-analytics"; +import { NextRequest } from "next/server"; +import { makeRollupOperationResult } from "../contracts/world-id-analytics-graphql"; + +// #region Mocks +const databaseOperation = jest.fn(); +const getAPIServiceGraphqlClient = jest.fn().mockResolvedValue({}); +const loggerInfo = jest.fn(); +const loggerWarn = jest.fn(); +const loggerError = jest.fn(); + +jest.mock("@/lib/logger", () => ({ + logger: { + info: (...args: unknown[]) => loggerInfo(...args), + warn: (...args: unknown[]) => loggerWarn(...args), + error: (...args: unknown[]) => loggerError(...args), + }, +})); + +jest.mock("@/api/helpers/graphql", () => ({ + getAPIServiceGraphqlClient: (...args: unknown[]) => + getAPIServiceGraphqlClient(...args), +})); + +jest.mock( + "../../api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.generated", + () => ({ + getSdk: () => + new Proxy( + {}, + { + get: () => databaseOperation, + }, + ), + }), + { virtual: true }, +); +// #endregion + +// #region Test Data +const secret = "analytics-contract-secret"; + +const request = (body?: unknown, authorization: string | null = secret) => + new NextRequest("http://localhost:3000/api/_rollup-world-id-analytics", { + method: "POST", + headers: authorization ? { authorization } : undefined, + body: body === undefined ? undefined : JSON.stringify(body), + }); + +// #endregion + +beforeEach(() => { + jest.clearAllMocks(); + process.env.INTERNAL_ENDPOINTS_SECRET = secret; + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; + databaseOperation.mockResolvedValue(makeRollupOperationResult()); +}); + +afterEach(() => { + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; +}); + +// #region Authentication +describe("POST _rollup-world-id-analytics [authentication]", () => { + it.each([null, "wrong-secret"])( + "rejects an unauthenticated request", + async (authorization) => { + const response = await POST(request(undefined, authorization)); + + expect(response.status).toBe(403); + expect(databaseOperation).not.toHaveBeenCalled(); + }, + ); +}); +// #endregion + +// #region Cron mode +describe("POST _rollup-world-id-analytics [cron mode]", () => { + it("skips the database when the rollout gate is unset", async () => { + const response = await POST(request()); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + outcome: "disabled", + }); + expect(getAPIServiceGraphqlClient).not.toHaveBeenCalled(); + expect(databaseOperation).not.toHaveBeenCalled(); + }); + + it("rebuilds the default trailing window when enabled", async () => { + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = "true"; + databaseOperation.mockResolvedValue( + makeRollupOperationResult([ + { date_utc: "2026-08-04", unique_count: "3" }, + { date_utc: "2026-08-05", unique_count: "4" }, + ]), + ); + + const response = await POST(request({})); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + outcome: "advanced", + days: 2, + total: "7", + }); + expect(databaseOperation).toHaveBeenCalledTimes(1); + expect(databaseOperation).toHaveBeenCalledWith({ + from_date: null, + to_date: null, + }); + expect(loggerInfo).toHaveBeenCalledWith( + "Rolled up World ID analytics", + expect.objectContaining({ outcome: "advanced", days: 2, total: "7" }), + ); + }); + + it("returns 500 when the database operation fails", async () => { + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = "true"; + databaseOperation.mockRejectedValue(new Error("connection reset")); + + const response = await POST(request({})); + + expect(response.status).toBe(500); + expect(await response.json()).toEqual({ + success: false, + error: "connection reset", + }); + expect(loggerError).toHaveBeenCalledWith( + "Error rolling up World ID analytics", + expect.objectContaining({ error: expect.any(Error) }), + ); + }); +}); +// #endregion + +// #region Dated mode +describe("POST _rollup-world-id-analytics [dated mode]", () => { + it("splits the range into inclusive chunks and bypasses the rollout gate", async () => { + const response = await POST( + request({ + from_date: "2026-01-01", + to_date: "2026-01-25", + chunk_days: 10, + }), + ); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + chunks: 3, + failed_ranges: [], + }); + expect( + databaseOperation.mock.calls.map(([variables]) => variables), + ).toEqual([ + { from_date: "2026-01-01", to_date: "2026-01-10" }, + { from_date: "2026-01-11", to_date: "2026-01-20" }, + { from_date: "2026-01-21", to_date: "2026-01-25" }, + ]); + // One fresh client per chunk: the service JWT only lives one minute. + expect(getAPIServiceGraphqlClient).toHaveBeenCalledTimes(3); + }); + + it("collects a failed chunk and keeps processing the rest", async () => { + databaseOperation.mockImplementation((variables: { from_date: string }) => { + if (variables.from_date === "2026-01-11") { + return Promise.reject(new Error("statement timeout")); + } + return Promise.resolve(makeRollupOperationResult()); + }); + + const response = await POST( + request({ + from_date: "2026-01-01", + to_date: "2026-01-25", + chunk_days: 10, + }), + ); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: false, + chunks: 3, + failed_ranges: [ + { + from_date: "2026-01-11", + to_date: "2026-01-20", + error: "statement timeout", + }, + ], + }); + expect(databaseOperation).toHaveBeenCalledTimes(3); + expect(loggerError).toHaveBeenCalledTimes(1); + }); + + it.each([ + [ + "a missing to_date", + { from_date: "2026-01-01" }, + "from_date and to_date must both be set", + ], + [ + "a malformed date", + { from_date: "2026-1-1", to_date: "2026-01-05" }, + "from_date must be a valid YYYY-MM-DD date", + ], + [ + "an impossible date", + { from_date: "2026-02-30", to_date: "2026-03-05" }, + "from_date must be a valid YYYY-MM-DD date", + ], + [ + "a reversed range", + { from_date: "2026-01-10", to_date: "2026-01-01" }, + "from_date must not be after to_date", + ], + [ + "a range wider than one call may take", + { from_date: "2026-01-01", to_date: "2026-05-01" }, + "range must be at most 92 days per call; split it", + ], + [ + "a non-positive chunk size", + { from_date: "2026-01-01", to_date: "2026-01-05", chunk_days: 0 }, + "chunk_days must be an integer between 1 and 31", + ], + ])("rejects %s without touching the database", async (_case, body, error) => { + const response = await POST(request(body)); + + expect(response.status).toBe(400); + expect(await response.json()).toEqual({ success: false, error }); + expect(databaseOperation).not.toHaveBeenCalled(); + }); +}); +// #endregion diff --git a/web/tests/contracts/world-id-analytics-endpoint.ts b/web/tests/contracts/world-id-analytics-endpoint.ts new file mode 100644 index 000000000..9fdd8fb15 --- /dev/null +++ b/web/tests/contracts/world-id-analytics-endpoint.ts @@ -0,0 +1,115 @@ +/** + * Approved endpoint contract ([HITL] approach sign-off 2026-07-30). + * + * Exact wire shape: + * { + * "period": "last_7_days" | "all_time", + * "app": { "count": "", "series": [{ "date": "YYYY-MM-DD", "count": "" }] }, + * "legacy_actions": [{ "id": ..., "count": ..., "series": [...] }], + * "actions": [{ "id": ..., "count": ..., "series": [...] }] + * } + * Counts are base-10 integer strings (bigint-safe); no other keys or aliases. + */ + +export type ContractPoint = { + count: string; + date: string; +}; + +export type ContractMetric = { + count: string; + series: ContractPoint[]; +}; + +export type ContractActionMetric = ContractMetric & { + id: string; +}; + +export type ContractAnalytics = { + actions: ContractActionMetric[]; + app: ContractMetric; + legacyActions: ContractActionMetric[]; + period: "all_time" | "last_7_days"; +}; + +const asRecord = (value: unknown): Record => { + if (!value || typeof value !== "object" || Array.isArray(value)) { + throw new Error("analytics response member must be an object"); + } + return value as Record; +}; + +const asCount = (value: unknown, label: string) => { + if (typeof value !== "string" || !/^\d+$/.test(value)) { + throw new Error(`${label} must be a base-10 integer string`); + } + return value; +}; + +const normalizePoint = (value: unknown): ContractPoint => { + const point = asRecord(value); + if ( + typeof point.date !== "string" || + !/^\d{4}-\d{2}-\d{2}$/.test(point.date) + ) { + throw new Error("analytics point date must be an ISO date"); + } + return { + count: asCount(point.count, "point count"), + date: point.date, + }; +}; + +const normalizeMetric = (value: unknown): ContractMetric => { + const metric = asRecord(value); + if (!Array.isArray(metric.series)) { + throw new Error("analytics metric must contain a series"); + } + return { + count: asCount(metric.count, "metric count"), + series: metric.series.map(normalizePoint), + }; +}; + +const normalizeActions = (value: unknown): ContractActionMetric[] => { + if (!Array.isArray(value)) { + throw new Error("analytics action metrics must be an array"); + } + return value.map((item) => { + const action = asRecord(item); + if (typeof action.id !== "string") { + throw new Error("analytics action metric must include an id"); + } + return { id: action.id, ...normalizeMetric(action) }; + }); +}; + +export const normalizeAnalyticsResponse = ( + value: unknown, +): ContractAnalytics => { + const body = asRecord(value); + const period = body.period; + if (period !== "last_7_days" && period !== "all_time") { + throw new Error("analytics response has an unknown period"); + } + + return { + period, + app: normalizeMetric(body.app), + legacyActions: normalizeActions(body.legacy_actions), + actions: normalizeActions(body.actions), + }; +}; + +/** + * The approved wire shape used by mocked fetch responses. Do not import this + * into production code. + */ +export const makeAnalyticsResponse = ( + input: Partial & Pick, +) => ({ + period: input.period ?? "last_7_days", + app: input.app, + legacy_actions: input.legacyActions ?? [], + actions: input.actions ?? [], +}); diff --git a/web/tests/contracts/world-id-analytics-graphql.ts b/web/tests/contracts/world-id-analytics-graphql.ts new file mode 100644 index 000000000..4e3ab7922 --- /dev/null +++ b/web/tests/contracts/world-id-analytics-graphql.ts @@ -0,0 +1,81 @@ +/** + * Approved generated-GraphQL wire shapes ([HITL] approach sign-off + * 2026-07-30) for the operations in + * api/portal/apps/[app_id]/world-id-analytics/graphql/get-world-id-analytics.graphql + * and api/_rollup-world-id-analytics/graphql/rollup-world-id-analytics.graphql. + * + * Scope query result: { app: [{ id, created_at, is_staging, + * rp_registration: [{ rp_id, created_at }] }], legacy_actions: [{ id, app_id, + * created_at }], actions: [{ id, rp_id, environment, created_at }], + * has_legacy_history: [{ date_utc }] }. + */ + +export type AnalyticsScopeInput = { + actions?: ReadonlyArray>; + app?: Record | null; + hasLegacyHistory?: boolean; + legacyActions?: ReadonlyArray>; +}; + +export const scopeRpId = "rp_0000000000000001"; +export const otherScopeRpId = "rp_0000000000000002"; + +export const makeAnalyticsScopeResult = ( + appId: string, + input: AnalyticsScopeInput = {}, +) => ({ + app: + input.app === null + ? [] + : [ + { + id: appId, + created_at: "2026-07-20T14:00:00.000Z", + is_staging: false, + rp_registration: [ + { rp_id: scopeRpId, created_at: "2026-07-25T14:00:00.000Z" }, + ], + ...input.app, + }, + ], + legacy_actions: (input.legacyActions ?? []).map((action) => ({ ...action })), + // Unit tests describe v4 rows by app ownership; the wire carries rp_id, so + // same-app rows get the app's RP id and foreign rows a different one. + actions: (input.actions ?? []).map(({ app_id, ...action }) => ({ + rp_id: + app_id === undefined || app_id === appId ? scopeRpId : otherScopeRpId, + ...action, + })), + has_legacy_history: + input.hasLegacyHistory ?? true ? [{ date_utc: "2026-01-05" }] : [], +}); + +export const makeAppDailyResult = ( + rows: Array<{ date_utc: string; unique_count: string }> = [], +) => ({ + world_id_app_stats_daily: rows, +}); + +export const makeActionDailyResult = (input?: { + legacy?: Array<{ + action_id: string; + date_utc: string; + unique_count: string; + }>; + v4?: Array<{ + action_v4_id: string; + date_utc: string; + unique_count: string; + }>; +}) => ({ + action_legacy_stats_daily: input?.legacy ?? [], + action_v4_stats_daily: input?.v4 ?? [], +}); + +export const makeRollupOperationResult = ( + rows: Array<{ date_utc: string; unique_count: string }> = [ + { date_utc: "2026-07-30", unique_count: "2" }, + ], +) => ({ + rollup_world_id_analytics: rows, +}); diff --git a/web/tests/world-id-analytics/canonical-analytics.ts b/web/tests/world-id-analytics/canonical-analytics.ts new file mode 100644 index 000000000..b5bcbd339 --- /dev/null +++ b/web/tests/world-id-analytics/canonical-analytics.ts @@ -0,0 +1,253 @@ +import type { Pool } from "pg"; + +export type ParityMismatchRow = { + action_id: string; + date_utc: string; + direction: "canonical_missing_or_mismatched" | "rollup_extra_or_mismatched"; + source: "legacy" | "v4"; + unique_count: string; +}; + +/** + * Both-directions action/day/count comparison between the raw nullifier + * tables and the rollup tables, over every complete UTC day (today is still + * accumulating and is excluded). One statement, so both sides observe a + * single snapshot. Empty result = parity. `rollup_extra_or_mismatched` rows + * are the only way to catch rolled rows whose raw rows were later deleted; + * `canonical_missing_or_mismatched` rows catch ranges the backfill skipped. + */ +export const readParityMismatches = async (pool: Pool) => { + const result = await pool.query( + `WITH bound AS ( + SELECT ((now() - interval '5 minutes') AT TIME ZONE 'UTC')::date + AS first_incomplete_day + ), + canonical AS ( + SELECT + 'legacy'::text AS source, + raw.action_id, + (raw.created_at AT TIME ZONE 'UTC')::date AS date_utc, + count(*)::bigint AS unique_count + FROM public.nullifier AS raw + CROSS JOIN bound + WHERE raw.created_at + < (bound.first_incomplete_day::timestamp AT TIME ZONE 'UTC') + GROUP BY raw.action_id, (raw.created_at AT TIME ZONE 'UTC')::date + + UNION ALL + + SELECT + 'v4', + raw.action_v4_id, + (raw.created_at AT TIME ZONE 'UTC')::date, + count(*)::bigint + FROM public.nullifier_v4 AS raw + CROSS JOIN bound + WHERE raw.created_at + < (bound.first_incomplete_day::timestamp AT TIME ZONE 'UTC') + GROUP BY raw.action_v4_id, (raw.created_at AT TIME ZONE 'UTC')::date + ), + rolled AS ( + SELECT + 'legacy'::text AS source, + daily.action_id, + daily.date_utc, + daily.unique_count + FROM public.action_legacy_stats_daily AS daily + CROSS JOIN bound + WHERE daily.date_utc < bound.first_incomplete_day + + UNION ALL + + SELECT + 'v4', + daily.action_v4_id, + daily.date_utc, + daily.unique_count + FROM public.action_v4_stats_daily AS daily + CROSS JOIN bound + WHERE daily.date_utc < bound.first_incomplete_day + ) + SELECT + 'canonical_missing_or_mismatched'::text AS direction, + source, action_id, date_utc::text, unique_count::text + FROM (SELECT * FROM canonical EXCEPT SELECT * FROM rolled) AS missing + UNION ALL + SELECT + 'rollup_extra_or_mismatched', + source, action_id, date_utc::text, unique_count::text + FROM (SELECT * FROM rolled EXCEPT SELECT * FROM canonical) AS extra + ORDER BY direction, source, action_id, date_utc`, + ); + return result.rows; +}; + +export type SourceDailyRow = { + action_id: string; + app_id: string; + count: string; + date_utc: string; + environment: "production" | "staging"; + source: "legacy" | "v4"; +}; + +export type LifetimeRow = Omit & { + count: string; +}; + +export type AppDailyRow = Pick< + SourceDailyRow, + "app_id" | "count" | "date_utc" | "environment" +>; + +export type AppSourceLifetimeRow = Pick< + SourceDailyRow, + "app_id" | "count" | "environment" | "source" +>; + +const sourceOrder = (left: SourceDailyRow, right: SourceDailyRow) => + [ + left.source.localeCompare(right.source), + left.app_id.localeCompare(right.app_id), + left.environment.localeCompare(right.environment), + left.action_id.localeCompare(right.action_id), + left.date_utc.localeCompare(right.date_utc), + ].find((comparison) => comparison !== 0) ?? 0; + +export const readCanonicalSourceDaily = async (pool: Pool, teamId: string) => { + const result = await pool.query( + `SELECT + 'legacy'::text AS source, + app.id AS app_id, + CASE WHEN app.is_staging THEN 'staging' ELSE 'production' END AS environment, + action.id AS action_id, + (nullifier.created_at AT TIME ZONE 'UTC')::date::text AS date_utc, + count(*)::text AS count + FROM public.nullifier + JOIN public.action ON action.id = nullifier.action_id + JOIN public.app ON app.id = action.app_id + WHERE app.team_id = $1 + GROUP BY app.id, app.is_staging, action.id, + (nullifier.created_at AT TIME ZONE 'UTC')::date + UNION ALL + SELECT + 'v4', + app.id, + action_v4.environment::text, + action_v4.id, + (nullifier_v4.created_at AT TIME ZONE 'UTC')::date::text, + count(*)::text + FROM public.nullifier_v4 + JOIN public.action_v4 ON action_v4.id = nullifier_v4.action_v4_id + JOIN public.rp_registration ON rp_registration.rp_id = action_v4.rp_id + JOIN public.app ON app.id = rp_registration.app_id + WHERE app.team_id = $1 + GROUP BY app.id, action_v4.environment, action_v4.id, + (nullifier_v4.created_at AT TIME ZONE 'UTC')::date`, + [teamId], + ); + return result.rows.sort(sourceOrder); +}; + +export const readRolledSourceDaily = async (pool: Pool, teamId: string) => { + const result = await pool.query( + `SELECT + 'legacy'::text AS source, + app.id AS app_id, + CASE WHEN app.is_staging THEN 'staging' ELSE 'production' END AS environment, + action.id AS action_id, + daily.date_utc::text, + daily.unique_count::text AS count + FROM public.action_legacy_stats_daily AS daily + JOIN public.action ON action.id = daily.action_id + JOIN public.app ON app.id = action.app_id + WHERE app.team_id = $1 + UNION ALL + SELECT + 'v4', + app.id, + action_v4.environment::text, + action_v4.id, + daily.date_utc::text, + daily.unique_count::text + FROM public.action_v4_stats_daily AS daily + JOIN public.action_v4 ON action_v4.id = daily.action_v4_id + JOIN public.rp_registration ON rp_registration.rp_id = action_v4.rp_id + JOIN public.app ON app.id = rp_registration.app_id + WHERE app.team_id = $1`, + [teamId], + ); + return result.rows.sort(sourceOrder); +}; + +export const toLifetimeRows = (rows: SourceDailyRow[]): LifetimeRow[] => { + const totals = new Map(); + for (const row of rows) { + const key = [row.source, row.app_id, row.environment, row.action_id].join( + "\u0000", + ); + const previous = totals.get(key); + totals.set(key, { + source: row.source, + app_id: row.app_id, + environment: row.environment, + action_id: row.action_id, + count: (BigInt(previous?.count ?? "0") + BigInt(row.count)).toString(), + }); + } + return [...totals.values()].sort( + (left, right) => + [ + left.source.localeCompare(right.source), + left.app_id.localeCompare(right.app_id), + left.environment.localeCompare(right.environment), + left.action_id.localeCompare(right.action_id), + ].find((comparison) => comparison !== 0) ?? 0, + ); +}; + +export const toAppDailyRows = (rows: SourceDailyRow[]): AppDailyRow[] => { + const totals = new Map(); + for (const row of rows) { + const key = [row.app_id, row.environment, row.date_utc].join("\u0000"); + const previous = totals.get(key); + totals.set(key, { + app_id: row.app_id, + environment: row.environment, + date_utc: row.date_utc, + count: (BigInt(previous?.count ?? "0") + BigInt(row.count)).toString(), + }); + } + return [...totals.values()].sort( + (left, right) => + [ + left.app_id.localeCompare(right.app_id), + left.environment.localeCompare(right.environment), + left.date_utc.localeCompare(right.date_utc), + ].find((comparison) => comparison !== 0) ?? 0, + ); +}; + +export const toAppSourceLifetimeRows = ( + rows: SourceDailyRow[], +): AppSourceLifetimeRow[] => { + const totals = new Map(); + for (const row of rows) { + const key = [row.source, row.app_id, row.environment].join("\u0000"); + const previous = totals.get(key); + totals.set(key, { + source: row.source, + app_id: row.app_id, + environment: row.environment, + count: (BigInt(previous?.count ?? "0") + BigInt(row.count)).toString(), + }); + } + return [...totals.values()].sort( + (left, right) => + [ + left.source.localeCompare(right.source), + left.app_id.localeCompare(right.app_id), + left.environment.localeCompare(right.environment), + ].find((comparison) => comparison !== 0) ?? 0, + ); +}; diff --git a/web/tests/world-id-analytics/cron-and-rollout.test.ts b/web/tests/world-id-analytics/cron-and-rollout.test.ts new file mode 100644 index 000000000..aad043a1f --- /dev/null +++ b/web/tests/world-id-analytics/cron-and-rollout.test.ts @@ -0,0 +1,482 @@ +import { POST } from "@/api/_rollup-world-id-analytics"; +import { NextRequest } from "next/server"; +import { createServer, type IncomingMessage, type Server } from "node:http"; +import { Pool } from "pg"; +import { + fixture, + insertV3Nullifier, + insertV4Nullifier, + resetFixture, + seedFixture, +} from "./fresh-stack-fixture"; +import { requiredEnv } from "./run-sql-operation"; + +// #region Mocks +// Only the log sink is mocked. The route, the GraphQL client, the service JWT, +// Hasura and Postgres are all real in this suite. +const loggerInfo = jest.fn(); +const loggerWarn = jest.fn(); +const loggerError = jest.fn(); + +jest.mock("@/lib/logger", () => ({ + logger: { + info: (...args: unknown[]) => loggerInfo(...args), + warn: (...args: unknown[]) => loggerWarn(...args), + error: (...args: unknown[]) => loggerError(...args), + }, +})); +// #endregion + +// #region Test Data +const pool = new Pool(); +const CRON_TRIGGER = "Rollup World ID analytics"; + +const request = ( + body?: unknown, + authorization = requiredEnv("INTERNAL_ENDPOINTS_SECRET"), +) => + new NextRequest("http://localhost:3000/api/_rollup-world-id-analytics", { + method: "POST", + headers: { authorization }, + body: body === undefined ? undefined : JSON.stringify(body), + }); + +const metadataRequest = async (body: unknown) => { + const response = await fetch(requiredEnv("WIA_HASURA_METADATA_URL"), { + method: "POST", + headers: { + "content-type": "application/json", + "x-hasura-admin-secret": requiredEnv("HASURA_GRAPHQL_ADMIN_SECRET"), + }, + body: JSON.stringify(body), + }); + + const payload: unknown = await response.json(); + if (!response.ok) { + throw new Error( + `Hasura metadata API ${response.status}: ${JSON.stringify(payload)}`, + ); + } + return payload as Record; +}; + +const utcDate = (daysAgo: number) => { + const now = new Date(); + return new Date( + Date.UTC( + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() - daysAgo, + ), + ) + .toISOString() + .slice(0, 10); +}; + +const daysAgoNoon = (daysAgo: number) => { + const date = new Date(Date.now() - daysAgo * 24 * 60 * 60 * 1000); + date.setUTCHours(12, 0, 0, 0); + return date.toISOString(); +}; + +const rolledRowCount = async () => + Number( + ( + await pool.query<{ count: string }>( + `SELECT ( + (SELECT count(*) FROM public.action_legacy_stats_daily) + + (SELECT count(*) FROM public.action_v4_stats_daily) + )::text AS count`, + ) + ).rows[0].count, + ); + +const rolledLegacyDates = async () => + ( + await pool.query<{ date_utc: string }>( + `SELECT date_utc::text FROM public.action_legacy_stats_daily + ORDER BY date_utc`, + ) + ).rows.map((row) => row.date_utc); + +const seedOneVerificationPerSource = async () => { + const twoHoursAgo = new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString(); + await insertV3Nullifier(pool, { + id: "nullifier_v3_rollout_gate", + createdAt: twoHoursAgo, + }); + await insertV4Nullifier(pool, { + id: "nullifier_v4_rollout_gate", + createdAt: twoHoursAgo, + }); +}; + +const rolledCounts = async () => ({ + legacy: ( + await pool.query( + `SELECT unique_count::text FROM public.action_legacy_stats_daily + WHERE action_id = $1`, + [fixture.productionV3ActionId], + ) + ).rows, + v4: ( + await pool.query( + `SELECT unique_count::text FROM public.action_v4_stats_daily + WHERE action_v4_id = $1`, + [fixture.productionV4ActionId], + ) + ).rows, +}); + +const removeChunkSabotage = async () => { + await pool.query(` + DROP TRIGGER IF EXISTS contract_fail_v3_analytics_chunk + ON public.action_legacy_stats_daily; + DROP FUNCTION IF EXISTS public.contract_fail_v3_analytics_chunk(); + `); +}; +// #endregion + +beforeAll(() => { + if (process.env.WIA_FRESH_STACK !== "true") { + throw new Error( + "Run through the isolated World ID analytics fresh-stack harness", + ); + } +}); + +beforeEach(async () => { + jest.clearAllMocks(); + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; + await removeChunkSabotage(); + await resetFixture(pool); + await seedFixture(pool); +}); + +afterEach(() => { + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; +}); + +afterAll(async () => { + await removeChunkSabotage(); + await resetFixture(pool); + await pool.end(); +}); + +jest.setTimeout(150_000); + +// #region Cron wiring +describe("World ID analytics [cron trigger]", () => { + it("targets the protected route on a fifteen-minute schedule", async () => { + const exported = await metadataRequest({ + type: "export_metadata", + args: {}, + }); + const metadata = exported.metadata ?? exported; + const trigger = (metadata.cron_triggers ?? []).find( + (candidate: { name: string }) => candidate.name === CRON_TRIGGER, + ); + + expect(trigger).toMatchObject({ + webhook: "{{NEXT_API_URL}}/_rollup-world-id-analytics", + schedule: "*/15 * * * *", + include_in_metadata: true, + }); + expect(trigger.headers).toEqual([ + { name: "Authorization", value_from_env: "INTERNAL_ENDPOINTS_SECRET" }, + ]); + // A missed tick must expire rather than pile up behind the next one. + expect(trigger.retry_conf).toMatchObject({ + num_retries: 1, + tolerance_seconds: 900, + }); + }); + + it("is scheduled by Hasura as events exactly fifteen minutes apart", async () => { + const events = await pool.query<{ + epoch: string; + minute: string; + second: string; + }>( + `SELECT EXTRACT(EPOCH FROM scheduled_time)::bigint::text AS epoch, + EXTRACT(MINUTE FROM scheduled_time)::text AS minute, + EXTRACT(SECOND FROM scheduled_time)::text AS second + FROM hdb_catalog.hdb_cron_events + WHERE trigger_name = $1 AND status = 'scheduled' + ORDER BY scheduled_time + LIMIT 6`, + [CRON_TRIGGER], + ); + + expect(events.rows.length).toBeGreaterThanOrEqual(2); + for (const row of events.rows) { + expect(Number(row.minute) % 15).toBe(0); + expect(Number(row.second)).toBe(0); + } + const gaps = events.rows + .slice(1) + .map( + (row, index) => Number(row.epoch) - Number(events.rows[index].epoch), + ); + expect(gaps.every((gap) => gap === 900)).toBe(true); + }); + + it("delivers the webhook with the internal secret from its own environment", async () => { + const delivered: Array<{ authorization?: string; method?: string }> = []; + let received: (() => void) | undefined; + const firstDelivery = new Promise((resolve) => { + received = resolve; + }); + + const server: Server = createServer( + (message: IncomingMessage, response) => { + delivered.push({ + authorization: message.headers.authorization, + method: message.method, + }); + response.writeHead(200, { "content-type": "application/json" }); + response.end("{}"); + received?.(); + }, + ); + + try { + await new Promise((resolve) => server.listen(0, resolve)); + const address = server.address(); + if (!address || typeof address === "string") { + throw new Error("test webhook server did not bind a port"); + } + + await metadataRequest({ + type: "create_scheduled_event", + args: { + webhook: `http://host.docker.internal:${address.port}/rollup`, + schedule_at: new Date().toISOString(), + payload: {}, + // Same indirection the cron trigger uses, so this proves the secret + // reaches the request from Hasura's environment. + headers: [ + { + name: "Authorization", + value_from_env: "INTERNAL_ENDPOINTS_SECRET", + }, + ], + retry_conf: { num_retries: 0, timeout_seconds: 10 }, + comment: "World ID analytics cron delivery contract", + }, + }); + + await Promise.race([ + firstDelivery, + new Promise((_, reject) => + setTimeout( + () => reject(new Error("Hasura never delivered the webhook")), + 90_000, + ), + ), + ]); + } finally { + await new Promise((resolve) => server.close(() => resolve())); + } + + expect(delivered[0]).toEqual({ + authorization: requiredEnv("INTERNAL_ENDPOINTS_SECRET"), + method: "POST", + }); + + // The credential Hasura sent is the one the route's guard accepts. + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = "true"; + const response = await POST(request({}, delivered[0].authorization)); + expect(response.status).toBe(200); + expect(await response.json()).toMatchObject({ outcome: "advanced" }); + }); +}); +// #endregion + +// #region Cron mode against the real database +describe("World ID analytics [cron mode]", () => { + it("rebuilds the trailing window once the flag is on", async () => { + await seedOneVerificationPerSource(); + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = "true"; + + const response = await POST(request({})); + const body = await response.json(); + + expect(response.status).toBe(200); + expect(body).toEqual({ + success: true, + outcome: "advanced", + days: 1, + total: "2", + }); + expect(await rolledCounts()).toEqual({ + legacy: [{ unique_count: "1" }], + v4: [{ unique_count: "1" }], + }); + }); + + it.each([ + ["unset", undefined], + ["false", "false"], + ["TRUE", "TRUE"], + ["1", "1"], + ["true with whitespace", " true"], + ])("stays fail-closed when the flag is %s", async (_label, value) => { + await seedOneVerificationPerSource(); + if (value === undefined) { + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; + } else { + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = value; + } + + const response = await POST(request({})); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + outcome: "disabled", + }); + // Raw rows are seeded, so an untouched rollup proves the database was + // never reached at all. + expect(await rolledRowCount()).toBe(0); + }); +}); +// #endregion + +// #region Dated mode against the real database +describe("World ID analytics [dated mode]", () => { + it("backfills a dated range with the rollout flag still off", async () => { + await insertV3Nullifier(pool, { + id: "nullifier_v3_dated_bypass", + createdAt: daysAgoNoon(10), + }); + await insertV4Nullifier(pool, { + id: "nullifier_v4_dated_bypass", + createdAt: daysAgoNoon(10), + }); + + const response = await POST( + request({ from_date: utcDate(10), to_date: utcDate(10) }), + ); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + chunks: 1, + failed_ranges: [], + }); + expect(await rolledCounts()).toEqual({ + legacy: [{ unique_count: "1" }], + v4: [{ unique_count: "1" }], + }); + }); + + it("covers a multi-chunk range end to end", async () => { + for (const daysAgo of [24, 14, 4]) { + await insertV3Nullifier(pool, { + id: `nullifier_v3_multi_${daysAgo}`, + createdAt: daysAgoNoon(daysAgo), + }); + } + + const response = await POST( + request({ + from_date: utcDate(24), + to_date: utcDate(0), + chunk_days: 10, + }), + ); + + expect(response.status).toBe(200); + expect(await response.json()).toEqual({ + success: true, + chunks: 3, + failed_ranges: [], + }); + expect(await rolledLegacyDates()).toEqual([ + utcDate(24), + utcDate(14), + utcDate(4), + ]); + }); + + it("reports a failed chunk, keeps the others, and heals on re-POST", async () => { + for (const daysAgo of [24, 14, 4]) { + await insertV3Nullifier(pool, { + id: `nullifier_v3_heal_${daysAgo}`, + createdAt: daysAgoNoon(daysAgo), + }); + } + await pool.query(` + CREATE FUNCTION public.contract_fail_v3_analytics_chunk() + RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + IF NEW.date_utc = '${utcDate(14)}'::date THEN + RAISE EXCEPTION 'chunk sabotage'; + END IF; + RETURN NEW; + END + $$; + + CREATE TRIGGER contract_fail_v3_analytics_chunk + BEFORE INSERT ON public.action_legacy_stats_daily + FOR EACH ROW + EXECUTE FUNCTION public.contract_fail_v3_analytics_chunk(); + `); + + const response = await POST( + request({ + from_date: utcDate(24), + to_date: utcDate(0), + chunk_days: 10, + }), + ); + const body = await response.json(); + + expect(response.status).toBe(200); + expect(body.success).toBe(false); + expect(body.chunks).toBe(3); + expect(body.failed_ranges).toEqual([ + { + from_date: utcDate(14), + to_date: utcDate(5), + error: expect.any(String), + }, + ]); + // The failed chunk's transaction rolled back alone; its neighbors landed. + expect(await rolledLegacyDates()).toEqual([utcDate(24), utcDate(4)]); + expect(loggerError).toHaveBeenCalledTimes(1); + + await removeChunkSabotage(); + const retry = await POST( + request({ from_date: utcDate(14), to_date: utcDate(5) }), + ); + + expect(await retry.json()).toEqual({ + success: true, + chunks: 1, + failed_ranges: [], + }); + expect(await rolledLegacyDates()).toEqual([ + utcDate(24), + utcDate(14), + utcDate(4), + ]); + }); + + it("rejects an over-wide range before touching the database", async () => { + const response = await POST( + request({ from_date: utcDate(100), to_date: utcDate(0) }), + ); + + expect(response.status).toBe(400); + expect(await response.json()).toEqual({ + success: false, + error: "range must be at most 92 days per call; split it", + }); + expect(await rolledRowCount()).toBe(0); + }); +}); +// #endregion diff --git a/web/tests/world-id-analytics/docker-compose.yaml b/web/tests/world-id-analytics/docker-compose.yaml new file mode 100644 index 000000000..22880b22a --- /dev/null +++ b/web/tests/world-id-analytics/docker-compose.yaml @@ -0,0 +1,53 @@ +services: + postgres: + image: postgres:14 + command: + - postgres + - -c + - shared_preload_libraries=pg_stat_statements,auto_explain + - -c + - pg_stat_statements.track=all + - -c + - auto_explain.log_min_duration=0 + - -c + - auto_explain.log_analyze=on + - -c + - auto_explain.log_buffers=on + - -c + - auto_explain.log_nested_statements=on + - -c + - auto_explain.log_timing=off + environment: + POSTGRES_PASSWORD: password + healthcheck: + test: ["CMD-SHELL", "pg_isready -U postgres"] + interval: 1s + timeout: 5s + retries: 30 + ports: + - "127.0.0.1::5432" + + hasura: + image: hasura/graphql-engine:v2.47.0.cli-migrations-v3 + depends_on: + postgres: + condition: service_healthy + environment: + HASURA_GRAPHQL_ADMIN_SECRET: secret! + HASURA_GRAPHQL_CLI_ENVIRONMENT: default + HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:password@postgres:5432/postgres + HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup,http-log,query-log + HASURA_GRAPHQL_ENABLE_CONSOLE: "false" + HASURA_GRAPHQL_JWT_SECRET: '{"key":"unsafe_AnEsZxveGsAWoENHGAnEsZxveGsAvxgMtDq9UxgTsDq9UxgTsNHGWoENIoJ","type":"HS512"}' + HASURA_GRAPHQL_METADATA_DIR: /hasura-metadata + HASURA_GRAPHQL_MIGRATIONS_DIR: /hasura-migrations + HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES: "true" + HASURA_GRAPHQL_UNAUTHORIZED_ROLE: public + INTERNAL_ENDPOINTS_SECRET: world-id-analytics-test-secret + NEXT_API_URL: http://host.docker.internal:9/api + ports: + - "127.0.0.1::8080" + volumes: + - "${WIA_REPOSITORY_ROOT:?repository root required}/hasura/migrations:/hasura-migrations:ro" + - "${WIA_REPOSITORY_ROOT:?repository root required}/hasura/metadata:/hasura-metadata:ro" + - "${WIA_REPOSITORY_ROOT:?repository root required}/hasura:/hasura-project:ro" diff --git a/web/tests/world-id-analytics/end-to-end-release.test.ts b/web/tests/world-id-analytics/end-to-end-release.test.ts new file mode 100644 index 000000000..3ee19e480 --- /dev/null +++ b/web/tests/world-id-analytics/end-to-end-release.test.ts @@ -0,0 +1,344 @@ +import { NextRequest } from "next/server"; +import { createServer, type IncomingMessage, type Server } from "node:http"; +import { Pool } from "pg"; +// Entry through the app-router re-export, exactly as production routes it. +import { POST } from "../../app/api/%5Frollup-world-id-analytics/route"; +import { readParityMismatches } from "./canonical-analytics"; +import { + fixture, + insertV3Nullifier, + insertV4Nullifier, + resetFixture, + seedFixture, +} from "./fresh-stack-fixture"; +import { requiredEnv } from "./run-sql-operation"; + +// #region Mocks +// Only the log sink is mocked; route, GraphQL client, service JWT, Hasura and +// Postgres are all real. +jest.mock("@/lib/logger", () => ({ + logger: { info: jest.fn(), warn: jest.fn(), error: jest.fn() }, +})); +// #endregion + +// #region Test Data +const pool = new Pool(); + +const request = (body?: unknown) => + new NextRequest("http://localhost:3000/api/_rollup-world-id-analytics", { + method: "POST", + headers: { authorization: requiredEnv("INTERNAL_ENDPOINTS_SECRET") }, + body: body === undefined ? undefined : JSON.stringify(body), + }); + +const metadataRequest = async (body: unknown) => { + const response = await fetch(requiredEnv("WIA_HASURA_METADATA_URL"), { + method: "POST", + headers: { + "content-type": "application/json", + "x-hasura-admin-secret": requiredEnv("HASURA_GRAPHQL_ADMIN_SECRET"), + }, + body: JSON.stringify(body), + }); + const payload: unknown = await response.json(); + if (!response.ok) { + throw new Error( + `Hasura metadata API ${response.status}: ${JSON.stringify(payload)}`, + ); + } + return payload as Record; +}; + +const utcDate = (daysAgo: number) => { + const now = new Date(); + return new Date( + Date.UTC( + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() - daysAgo, + ), + ) + .toISOString() + .slice(0, 10); +}; + +const daysAgoNoon = (daysAgo: number) => { + const date = new Date(Date.now() - daysAgo * 24 * 60 * 60 * 1000); + date.setUTCHours(12, 0, 0, 0); + return date.toISOString(); +}; + +const readAppDaily = async ( + appId: string, + environment: string, + fromDaysAgo: number, + toDaysAgo: number, +) => + ( + await pool.query<{ date_utc: string; unique_count: string }>( + `SELECT date_utc::text, unique_count::text + FROM public.world_id_analytics_app_daily($1, $2, $3::date, $4::date)`, + [appId, environment, utcDate(fromDaysAgo), utcDate(toDaysAgo)], + ) + ).rows; + +const rolledRowCount = async () => + Number( + ( + await pool.query<{ count: string }>( + `SELECT ( + (SELECT count(*) FROM public.action_legacy_stats_daily) + + (SELECT count(*) FROM public.action_v4_stats_daily) + )::text AS count`, + ) + ).rows[0].count, + ); + +// #endregion + +beforeAll(() => { + if (process.env.WIA_FRESH_STACK !== "true") { + throw new Error( + "Run through the isolated World ID analytics fresh-stack harness", + ); + } +}); + +beforeEach(async () => { + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; + await resetFixture(pool); + await seedFixture(pool); +}); + +afterEach(() => { + delete process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED; +}); + +afterAll(async () => { + await resetFixture(pool); + await pool.end(); +}); + +jest.setTimeout(150_000); + +// #region Release runbook end to end +describe("World ID analytics [release runbook end to end]", () => { + it("boots dark, backfills history, validates parity, serves reads, then runs live off the real cron", async () => { + // ── 1. Deployed dark: the cron tick is a no-op before the flag flips. + const darkTick = await POST(request({})); + expect(await darkTick.json()).toEqual({ + success: true, + outcome: "disabled", + }); + expect(await rolledRowCount()).toBe(0); + + // ── 2. History exists across ~200 days, all apps and environments. + const seeds = [ + { count: 2, daysAgo: 200, insert: "v3" as const }, + { count: 3, daysAgo: 150, insert: "v4" as const }, + { count: 1, daysAgo: 100, insert: "v3" as const }, + { count: 1, daysAgo: 100, insert: "v4" as const }, + { count: 1, daysAgo: 10, insert: "v3" as const }, + ]; + for (const seed of seeds) { + for (let i = 0; i < seed.count; i += 1) { + if (seed.insert === "v3") { + await insertV3Nullifier(pool, { + id: `nullifier_v3_e2e_${seed.daysAgo}_${i}`, + createdAt: daysAgoNoon(seed.daysAgo), + }); + } else { + await insertV4Nullifier(pool, { + id: `nullifier_v4_e2e_${seed.daysAgo}_${i}`, + createdAt: daysAgoNoon(seed.daysAgo), + }); + } + } + } + // Environment separation probes: a staging app's legacy action, a + // staging-environment v4 action registered to the production app, and a + // v4-only app. + await insertV3Nullifier(pool, { + actionId: fixture.stagingV3ActionId, + id: "nullifier_v3_e2e_staging_app", + createdAt: daysAgoNoon(60), + }); + await insertV4Nullifier(pool, { + actionId: fixture.productionStagingV4ActionId, + id: "nullifier_v4_e2e_staging_env_1", + createdAt: daysAgoNoon(60), + }); + await insertV4Nullifier(pool, { + actionId: fixture.productionStagingV4ActionId, + id: "nullifier_v4_e2e_staging_env_2", + createdAt: daysAgoNoon(60), + }); + await insertV4Nullifier(pool, { + actionId: fixture.v4OnlyActionId, + id: "nullifier_v4_e2e_v4_only", + createdAt: daysAgoNoon(30), + }); + + // ── 3. Operator backfill: three ≤92-day POSTs cover the whole history. + for (const [fromDaysAgo, toDaysAgo, chunks] of [ + [210, 120, 10], + [119, 30, 9], + [29, 0, 3], + ] as const) { + const response = await POST( + request({ + from_date: utcDate(fromDaysAgo), + to_date: utcDate(toDaysAgo), + chunk_days: 10, + }), + ); + expect(await response.json()).toEqual({ + success: true, + chunks, + failed_ranges: [], + }); + } + + // ── 4. Parity signs off the backfill: every complete UTC day matches a + // recount of the raw tables in both directions. + expect(await readParityMismatches(pool)).toEqual([]); + + // ── 5. The read function serves every app/environment correctly. + expect( + await readAppDaily(fixture.productionAppId, "production", 210, 0), + ).toEqual([ + { date_utc: utcDate(200), unique_count: "2" }, + { date_utc: utcDate(150), unique_count: "3" }, + { date_utc: utcDate(100), unique_count: "2" }, + { date_utc: utcDate(10), unique_count: "1" }, + ]); + // The staging-environment v4 rows belong to the production app but must + // only answer a staging query. + expect( + await readAppDaily(fixture.productionAppId, "staging", 210, 0), + ).toEqual([{ date_utc: utcDate(60), unique_count: "2" }]); + expect(await readAppDaily(fixture.stagingAppId, "staging", 210, 0)).toEqual( + [{ date_utc: utcDate(60), unique_count: "1" }], + ); + expect( + await readAppDaily(fixture.v4OnlyAppId, "production", 210, 0), + ).toEqual([{ date_utc: utcDate(30), unique_count: "1" }]); + // Date bounds clip the series. + expect( + await readAppDaily(fixture.productionAppId, "production", 160, 90), + ).toEqual([ + { date_utc: utcDate(150), unique_count: "3" }, + { date_utc: utcDate(100), unique_count: "2" }, + ]); + + // ── 6. Flag on: a real Hasura-delivered webhook drives the live tick + // through the actual route handler. + process.env.WORLD_ID_ANALYTICS_ROLLUP_ENABLED = "true"; + + const deliveries: Array<{ body: any; status: number }> = []; + let delivered: (() => void) | undefined; + const firstDelivery = new Promise((resolve) => { + delivered = resolve; + }); + const bridge: Server = createServer( + (message: IncomingMessage, response) => { + const chunks: Buffer[] = []; + message.on("data", (chunk: Buffer) => chunks.push(chunk)); + message.on("end", () => { + void (async () => { + const routeResponse = await POST( + new NextRequest( + "http://localhost:3000/api/_rollup-world-id-analytics", + { + method: "POST", + headers: { + authorization: message.headers.authorization ?? "", + }, + body: Buffer.concat(chunks).toString("utf8") || undefined, + }, + ), + ); + const body = await routeResponse.json(); + deliveries.push({ body, status: routeResponse.status }); + response.writeHead(routeResponse.status, { + "content-type": "application/json", + }); + response.end(JSON.stringify(body)); + delivered?.(); + })(); + }); + }, + ); + + try { + await new Promise((resolve) => bridge.listen(0, resolve)); + const address = bridge.address(); + if (!address || typeof address === "string") { + throw new Error("bridge server did not bind a port"); + } + + await metadataRequest({ + type: "create_scheduled_event", + args: { + webhook: `http://host.docker.internal:${address.port}/rollup`, + schedule_at: new Date().toISOString(), + payload: {}, + headers: [ + { + name: "Authorization", + value_from_env: "INTERNAL_ENDPOINTS_SECRET", + }, + ], + retry_conf: { num_retries: 0, timeout_seconds: 10 }, + comment: "World ID analytics end-to-end live tick", + }, + }); + + await Promise.race([ + firstDelivery, + new Promise((_, reject) => + setTimeout( + () => reject(new Error("Hasura never delivered the live tick")), + 90_000, + ), + ), + ]); + } finally { + await new Promise((resolve) => bridge.close(() => resolve())); + } + + expect(deliveries[0].status).toBe(200); + expect(deliveries[0].body).toMatchObject({ + success: true, + outcome: "advanced", + }); + + // ── 7. Late-arriving data heals on the next tick. + const lateCreatedAt = new Date(Date.now() - 2 * 60 * 60 * 1000); + const lateDate = lateCreatedAt.toISOString().slice(0, 10); + await insertV3Nullifier(pool, { + id: "nullifier_v3_e2e_late", + createdAt: lateCreatedAt.toISOString(), + }); + + expect(await (await POST(request({}))).json()).toMatchObject({ + outcome: "advanced", + }); + expect( + await readAppDaily(fixture.productionAppId, "production", 2, 0), + ).toContainEqual({ date_utc: lateDate, unique_count: "1" }); + + // ── 8. A deleted raw row is swept back out by the following tick. + await pool.query("DELETE FROM public.nullifier WHERE id = $1", [ + "nullifier_v3_e2e_late", + ]); + await POST(request({})); + expect( + await readAppDaily(fixture.productionAppId, "production", 2, 0), + ).not.toContainEqual({ date_utc: lateDate, unique_count: "1" }); + + // ── 9. Steady state still matches the raw tables exactly. + expect(await readParityMismatches(pool)).toEqual([]); + }); +}); +// #endregion diff --git a/web/tests/world-id-analytics/fresh-stack-fixture.ts b/web/tests/world-id-analytics/fresh-stack-fixture.ts new file mode 100644 index 000000000..98197ee8c --- /dev/null +++ b/web/tests/world-id-analytics/fresh-stack-fixture.ts @@ -0,0 +1,206 @@ +import type { Pool, PoolClient } from "pg"; + +export const fixture = { + teamId: "team_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + productionAppId: "app_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + stagingAppId: "app_bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", + v3OnlyAppId: "app_cccccccccccccccccccccccccccccccc", + v4OnlyAppId: "app_dddddddddddddddddddddddddddddddd", + productionRpId: "rp_aaaaaaaaaaaaaaaa", + stagingRpId: "rp_bbbbbbbbbbbbbbbb", + v4OnlyRpId: "rp_cccccccccccccccc", + productionV3ActionId: "action_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + secondProductionV3ActionId: "action_bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", + stagingV3ActionId: "action_cccccccccccccccccccccccccccccccc", + v3OnlyActionId: "action_dddddddddddddddddddddddddddddddd", + productionV4ActionId: "action_v4_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + secondProductionV4ActionId: "action_v4_bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", + stagingV4ActionId: "action_v4_cccccccccccccccccccccccccccccccc", + v4OnlyActionId: "action_v4_dddddddddddddddddddddddddddddddd", + productionStagingV4ActionId: "action_v4_eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + stagingProductionV4ActionId: "action_v4_ffffffffffffffffffffffffffffffff", +} as const; + +type Database = Pick | Pick; + +export const resetFixture = async (database: Database) => { + await database.query("DELETE FROM public.team WHERE id = $1", [ + fixture.teamId, + ]); + await database.query(` + TRUNCATE TABLE + public.action_legacy_stats_daily, + public.action_v4_stats_daily; + `); +}; + +export const seedFixture = async (database: Database) => { + await database.query( + `INSERT INTO public.team (id, name) + VALUES ($1, 'World ID analytics fresh-stack contract')`, + [fixture.teamId], + ); + + const apps = [ + [ + fixture.productionAppId, + "Production analytics app", + false, + "2026-01-01T10:00:00Z", + ], + [ + fixture.stagingAppId, + "Staging analytics app", + true, + "2026-01-01T10:00:00Z", + ], + [ + fixture.v3OnlyAppId, + "V3 only analytics app", + false, + "2026-01-01T10:00:00Z", + ], + [ + fixture.v4OnlyAppId, + "V4 only analytics app", + false, + "2026-01-01T10:00:00Z", + ], + ] as const; + for (const [id, name, isStaging, createdAt] of apps) { + // trigger_insert_app_id regenerates app ids on insert, so write the + // fixture id back to keep the suite's stable ids. + const inserted = await database.query( + `INSERT INTO public.app ( + team_id, name, is_staging, created_at + ) VALUES ($1, $2, $3, $4) + RETURNING id`, + [fixture.teamId, name, isStaging, createdAt], + ); + await database.query(`UPDATE public.app SET id = $1 WHERE id = $2`, [ + id, + (inserted.rows as Array<{ id: string }>)[0].id, + ]); + } + + for (const [rpId, appId] of [ + [fixture.productionRpId, fixture.productionAppId], + [fixture.stagingRpId, fixture.stagingAppId], + [fixture.v4OnlyRpId, fixture.v4OnlyAppId], + ] as const) { + await database.query( + `INSERT INTO public.rp_registration ( + rp_id, app_id, mode, signer_address, status, created_at + ) VALUES ( + $1, $2, 'managed', + '0x0000000000000000000000000000000000000001', + 'registered', '2026-01-03T10:00:00Z' + )`, + [rpId, appId], + ); + } + + for (const [id, appId, action] of [ + [ + fixture.productionV3ActionId, + fixture.productionAppId, + "production-v3-one", + ], + [ + fixture.secondProductionV3ActionId, + fixture.productionAppId, + "production-v3-two", + ], + [fixture.stagingV3ActionId, fixture.stagingAppId, "staging-v3"], + [fixture.v3OnlyActionId, fixture.v3OnlyAppId, "v3-only"], + ] as const) { + await database.query( + `INSERT INTO public.action ( + id, app_id, action, external_nullifier, created_at, + max_verifications + ) VALUES ($1, $2, $3, $4, '2026-01-02T10:00:00Z', 0)`, + [id, appId, action, `external_${id}`], + ); + } + + for (const [id, rpId, action, environment] of [ + [ + fixture.productionV4ActionId, + fixture.productionRpId, + "production-v4-one", + "production", + ], + [ + fixture.secondProductionV4ActionId, + fixture.productionRpId, + "production-v4-two", + "production", + ], + [fixture.stagingV4ActionId, fixture.stagingRpId, "staging-v4", "staging"], + [fixture.v4OnlyActionId, fixture.v4OnlyRpId, "v4-only", "production"], + [ + fixture.productionStagingV4ActionId, + fixture.productionRpId, + "production-app-staging-v4", + "staging", + ], + [ + fixture.stagingProductionV4ActionId, + fixture.stagingRpId, + "staging-app-production-v4", + "production", + ], + ] as const) { + await database.query( + `INSERT INTO public.action_v4 ( + id, rp_id, action, environment, created_at + ) VALUES ($1, $2, $3, $4, '2026-01-04T10:00:00Z')`, + [id, rpId, action, environment], + ); + } +}; + +export const insertV3Nullifier = async ( + database: Database, + input: { + actionId?: string; + createdAt: string; + id: string; + updatedAt?: string; + uses?: number; + }, +) => { + await database.query( + `INSERT INTO public.nullifier ( + id, action_id, created_at, updated_at, nullifier_hash, uses + ) VALUES ($1, $2, $3, $4, $5, $6)`, + [ + input.id, + input.actionId ?? fixture.productionV3ActionId, + input.createdAt, + input.updatedAt ?? input.createdAt, + `hash_${input.id}`, + input.uses ?? 0, + ], + ); +}; + +let v4Nullifier = 10_000n; + +export const insertV4Nullifier = async ( + database: Database, + input: { actionId?: string; createdAt: string; id: string }, +) => { + v4Nullifier += 1n; + await database.query( + `INSERT INTO public.nullifier_v4 ( + id, action_v4_id, created_at, nullifier + ) VALUES ($1, $2, $3, $4)`, + [ + input.id, + input.actionId ?? fixture.productionV4ActionId, + input.createdAt, + v4Nullifier.toString(), + ], + ); +}; diff --git a/web/tests/world-id-analytics/index-build-locking.test.ts b/web/tests/world-id-analytics/index-build-locking.test.ts new file mode 100644 index 000000000..f1219e08a --- /dev/null +++ b/web/tests/world-id-analytics/index-build-locking.test.ts @@ -0,0 +1,224 @@ +import { Pool } from "pg"; +import { fixture, resetFixture, seedFixture } from "./fresh-stack-fixture"; +import { commandOutput, runSqlOperation } from "./run-sql-operation"; + +const pool = new Pool(); + +// Probe names, never the real indexes: the harness builds those at startup and +// the backfill gate refuses to run without them. +const CONCURRENT_PROBE = "nullifier_created_at_probe_idx"; +const MIGRATION_PROBE = "nullifier_created_at_migration_probe_idx"; + +// Enough rows that the concurrent build spans many insert round trips, so the +// live-write assertion below is about real overlap rather than luck. +const BULK_ROWS = 60_000; + +const utcMidnight = (daysAgo: number) => { + const now = new Date(); + return new Date( + Date.UTC( + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() - daysAgo, + ), + ); +}; + +const atUtc = (daysAgo: number, hours: number) => { + const date = utcMidnight(daysAgo); + date.setUTCHours(hours, 0, 0, 0); + return date.toISOString(); +}; + +const utcDate = (daysAgo: number) => + utcMidnight(daysAgo).toISOString().slice(0, 10); + +const dropProbeIndexes = async () => { + for (const name of [CONCURRENT_PROBE, MIGRATION_PROBE]) { + await pool.query(`DROP INDEX CONCURRENTLY IF EXISTS public.${name}`); + } +}; + +const indexIsValid = async (name: string) => { + const result = await pool.query<{ valid: boolean }>( + `SELECT indisready AND indisvalid AS valid + FROM pg_index + WHERE indexrelid = to_regclass($1) + AND indrelid = 'public.nullifier'::regclass`, + [`public.${name}`], + ); + return result.rows[0]?.valid ?? false; +}; + +const insertNullifier = ( + database: { query: Pool["query"] }, + input: { actionId: string; createdAt: string; id: string }, +) => + database.query( + `INSERT INTO public.nullifier ( + id, action_id, created_at, updated_at, nullifier_hash, uses + ) VALUES ($1, $2, $3, $3, $4, 0)`, + [input.id, input.actionId, input.createdAt, `hash_${input.id}`], + ); + +const seedBulkNullifiers = async (count: number) => { + await pool.query( + `INSERT INTO public.nullifier ( + id, action_id, created_at, updated_at, nullifier_hash, uses + ) + SELECT + 'nullifier_v3_bulk_' || g, + $1, + $2::timestamptz - (g * interval '1 second'), + $2::timestamptz - (g * interval '1 second'), + 'hash_bulk_' || g, + 0 + FROM generate_series(1, $3::int) AS g`, + [fixture.productionV3ActionId, atUtc(10, 12), count], + ); +}; + +beforeAll(() => { + if (process.env.WIA_FRESH_STACK !== "true") { + throw new Error( + "Run through the isolated World ID analytics fresh-stack harness", + ); + } +}); + +beforeEach(async () => { + await dropProbeIndexes(); + await resetFixture(pool); + await seedFixture(pool); +}); + +afterAll(async () => { + await dropProbeIndexes(); + await resetFixture(pool); + await pool.end(); +}); + +jest.setTimeout(150_000); + +// #region Why the index build cannot live in the migration +describe("World ID analytics [created_at index build]", () => { + it("cannot be built concurrently inside a migration transaction", async () => { + const client = await pool.connect(); + + try { + // Hasura wraps every migration in exactly this. + await client.query("BEGIN"); + + await expect( + client.query( + `CREATE INDEX CONCURRENTLY ${CONCURRENT_PROBE} + ON public.nullifier (created_at)`, + ), + ).rejects.toMatchObject({ code: "25001" }); + } finally { + await client.query("ROLLBACK").catch(() => undefined); + client.release(); + } + }); + + it("blocks verification inserts when built the migration way instead", async () => { + const builder = await pool.connect(); + const writer = await pool.connect(); + + try { + await builder.query("BEGIN"); + await builder.query( + `CREATE INDEX ${MIGRATION_PROBE} ON public.nullifier (created_at)`, + ); + + // A verification arriving while the migration transaction is open. The + // lock_timeout turns the wait into a deterministic failure instead of a + // hang; in production this is a verification that stalls or 5xxs. + await writer.query("SET lock_timeout = '250ms'"); + await expect( + insertNullifier(writer, { + actionId: fixture.productionV3ActionId, + createdAt: atUtc(3, 9), + id: "nullifier_v3_blocked_by_migration", + }), + ).rejects.toMatchObject({ code: "55P03" }); + } finally { + await builder.query("ROLLBACK").catch(() => undefined); + builder.release(); + writer.release(); + } + }); + + it("accepts verifications throughout a concurrent build and loses none", async () => { + await seedBulkNullifiers(BULK_ROWS); + + const writer = await pool.connect(); + // Any lock conflict with the build fails the insert outright rather than + // waiting, so a green run is proof the build never blocked a write. + await writer.query("SET lock_timeout = '250ms'"); + + let buildSettled = false; + const build = pool + .query( + `CREATE INDEX CONCURRENTLY ${CONCURRENT_PROBE} + ON public.nullifier (created_at)`, + ) + .finally(() => { + buildSettled = true; + }); + + const written: string[] = []; + const writtenDuringBuild: string[] = []; + const failures: string[] = []; + + try { + while (!buildSettled) { + const id = `nullifier_v3_live_${written.length + 1}`; + try { + await insertNullifier(writer, { + actionId: fixture.secondProductionV3ActionId, + createdAt: atUtc(4, 6), + id, + }); + written.push(id); + if (!buildSettled) writtenDuringBuild.push(id); + } catch (error) { + failures.push(`${id}: ${String(error)}`); + break; + } + } + await build; + } finally { + writer.release(); + } + + expect(failures).toEqual([]); + expect(writtenDuringBuild.length).toBeGreaterThanOrEqual(5); + expect(await indexIsValid(CONCURRENT_PROBE)).toBe(true); + + // The second pass of a concurrent build has to pick up rows written while + // the first pass was running. Prove it by rolling up and counting. + await pool.query( + "SELECT * FROM public.rollup_world_id_analytics($1::date, $1::date)", + [utcDate(4)], + ); + const rolled = await pool.query<{ unique_count: string }>( + `SELECT unique_count::text + FROM public.action_legacy_stats_daily + WHERE action_id = $1 AND date_utc = $2::date`, + [fixture.secondProductionV3ActionId, utcDate(4)], + ); + + expect(rolled.rows).toEqual([{ unique_count: String(written.length) }]); + }); + + it("is safe to rerun after the harness already built both indexes", async () => { + const rerun = runSqlOperation("create-nullifier-created-at-index.sql"); + + expect({ error: rerun.error, status: rerun.status }).toEqual( + expect.objectContaining({ error: undefined, status: 0 }), + ); + expect(commandOutput(rerun)).not.toContain("missing or invalid"); + }); +}); +// #endregion diff --git a/web/tests/world-id-analytics/rollup-parity.test.ts b/web/tests/world-id-analytics/rollup-parity.test.ts new file mode 100644 index 000000000..234332fbc --- /dev/null +++ b/web/tests/world-id-analytics/rollup-parity.test.ts @@ -0,0 +1,271 @@ +import { Pool } from "pg"; +import { readParityMismatches } from "./canonical-analytics"; +import { + fixture, + insertV3Nullifier, + insertV4Nullifier, + resetFixture, + seedFixture, +} from "./fresh-stack-fixture"; +import { commandOutput, runSqlOperation } from "./run-sql-operation"; + +const pool = new Pool(); + +const runCreateNullifierIndex = () => + runSqlOperation("create-nullifier-created-at-index.sql"); + +const utcDate = (daysAgo: number) => { + const now = new Date(); + return new Date( + Date.UTC( + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() - daysAgo, + ), + ) + .toISOString() + .slice(0, 10); +}; + +const daysAgoIso = (daysAgo: number, hours = 12) => { + const date = new Date(Date.now() - daysAgo * 24 * 60 * 60 * 1000); + date.setUTCHours(hours, 0, 0, 0); + return date.toISOString(); +}; + +const rollupRange = (fromDate: string | null, toDate: string | null) => + pool.query( + `SELECT * FROM public.rollup_world_id_analytics($1::date, $2::date)`, + [fromDate, toDate], + ); + +const rolledRowCount = async () => + Number( + ( + await pool.query<{ count: string }>( + `SELECT ( + (SELECT count(*) FROM public.action_legacy_stats_daily) + + (SELECT count(*) FROM public.action_v4_stats_daily) + )::text AS count`, + ) + ).rows[0].count, + ); + +const removeParitySabotage = async () => { + await pool.query(` + DROP TRIGGER IF EXISTS contract_corrupt_v3_analytics_rollup + ON public.action_legacy_stats_daily; + DROP TRIGGER IF EXISTS contract_corrupt_v4_analytics_rollup + ON public.action_v4_stats_daily; + DROP FUNCTION IF EXISTS public.contract_corrupt_v3_analytics_rollup(); + DROP FUNCTION IF EXISTS public.contract_corrupt_v4_analytics_rollup(); + `); +}; + +beforeAll(() => { + if (process.env.WIA_FRESH_STACK !== "true") { + throw new Error( + "Run through the isolated World ID analytics fresh-stack harness", + ); + } +}); + +beforeEach(async () => { + await removeParitySabotage(); + await resetFixture(pool); + await seedFixture(pool); +}); + +afterAll(async () => { + await removeParitySabotage(); + await resetFixture(pool); + await pool.end(); +}); + +jest.setTimeout(150_000); + +// #region Index script gate +describe("World ID analytics [index operations script]", () => { + it("rejects an invalid same-named concurrent index", async () => { + const duplicateCreatedAt = daysAgoIso(7); + await insertV3Nullifier(pool, { + id: "nullifier_v3_invalid_index_one", + createdAt: duplicateCreatedAt, + }); + await insertV3Nullifier(pool, { + id: "nullifier_v3_invalid_index_two", + createdAt: duplicateCreatedAt, + }); + await pool.query("DROP INDEX CONCURRENTLY public.nullifier_created_at_idx"); + + try { + await expect( + pool.query(` + CREATE UNIQUE INDEX CONCURRENTLY nullifier_created_at_idx + ON public.nullifier (created_at) + `), + ).rejects.toThrow(); + + const result = runCreateNullifierIndex(); + expect(result.status).not.toBe(0); + expect(commandOutput(result)).toContain( + "nullifier_created_at_idx is missing or invalid", + ); + } finally { + await pool.query( + "DROP INDEX CONCURRENTLY IF EXISTS public.nullifier_created_at_idx", + ); + await pool.query(` + CREATE INDEX CONCURRENTLY nullifier_created_at_idx + ON public.nullifier (created_at) + `); + } + }); +}); +// #endregion + +// #region Raw/rollup parity +describe("World ID analytics [raw/rollup parity]", () => { + it("holds after the dated backfill plus a trailing-window rollup", async () => { + await insertV4Nullifier(pool, { + id: "nullifier_v4_parity_success", + createdAt: daysAgoIso(7), + }); + await insertV3Nullifier(pool, { + id: "nullifier_v3_parity_success_recent", + createdAt: new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString(), + }); + + await rollupRange(utcDate(10), utcDate(1)); + await rollupRange(null, null); + + expect(await readParityMismatches(pool)).toEqual([]); + const recent = await pool.query( + `SELECT unique_count::text + FROM public.action_legacy_stats_daily + WHERE action_id = $1`, + [fixture.productionV3ActionId], + ); + expect(recent.rows).toEqual([{ unique_count: "1" }]); + }); + + it("flags history the backfill never covered", async () => { + await insertV3Nullifier(pool, { + id: "nullifier_v3_missing_history", + createdAt: daysAgoIso(7), + }); + + const mismatches = await readParityMismatches(pool); + + expect(mismatches).toEqual([ + { + direction: "canonical_missing_or_mismatched", + source: "legacy", + action_id: fixture.productionV3ActionId, + date_utc: utcDate(7), + unique_count: "1", + }, + ]); + }); + + it("flags corrupted v4 counts, then holds after re-rolling the range", async () => { + await pool.query(` + CREATE FUNCTION public.contract_corrupt_v4_analytics_rollup() + RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + NEW.unique_count := NEW.unique_count + 1; + RETURN NEW; + END + $$; + + CREATE TRIGGER contract_corrupt_v4_analytics_rollup + BEFORE INSERT ON public.action_v4_stats_daily + FOR EACH ROW + EXECUTE FUNCTION public.contract_corrupt_v4_analytics_rollup(); + `); + await insertV4Nullifier(pool, { + id: "nullifier_v4_parity_mismatch", + createdAt: daysAgoIso(7), + }); + await rollupRange(utcDate(10), utcDate(1)); + + const mismatches = await readParityMismatches(pool); + expect(mismatches).toHaveLength(2); + expect(mismatches.map((row) => row.direction).sort()).toEqual([ + "canonical_missing_or_mismatched", + "rollup_extra_or_mismatched", + ]); + + // The documented repair: re-POST (here: re-roll) the suspect range, no + // reset step. The rebuild both recounts and sweeps. + await removeParitySabotage(); + await rollupRange(utcDate(10), utcDate(1)); + + expect(await readParityMismatches(pool)).toEqual([]); + const rolled = await pool.query( + `SELECT unique_count::text + FROM public.action_v4_stats_daily + WHERE action_v4_id = $1`, + [fixture.productionV4ActionId], + ); + expect(rolled.rows).toEqual([{ unique_count: "1" }]); + }); + + it("flags corrupted v3 counts", async () => { + await pool.query(` + CREATE FUNCTION public.contract_corrupt_v3_analytics_rollup() + RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + NEW.unique_count := NEW.unique_count + 1; + RETURN NEW; + END + $$; + + CREATE TRIGGER contract_corrupt_v3_analytics_rollup + BEFORE INSERT ON public.action_legacy_stats_daily + FOR EACH ROW + EXECUTE FUNCTION public.contract_corrupt_v3_analytics_rollup(); + `); + await insertV3Nullifier(pool, { + id: "nullifier_v3_parity_mismatch", + createdAt: daysAgoIso(7), + }); + await rollupRange(utcDate(10), utcDate(1)); + + const mismatches = await readParityMismatches(pool); + + expect(mismatches).not.toEqual([]); + expect(mismatches.every((row) => row.source === "legacy")).toBe(true); + }); + + it("catches rolled rows whose raw rows were deleted, healed by re-rolling", async () => { + // A rolled day with no surviving raw rows: parity must flag it, and + // re-rolling exactly that range must sweep it. + await pool.query( + `INSERT INTO public.action_legacy_stats_daily ( + action_id, date_utc, unique_count + ) VALUES ($1, '2026-01-01', 5)`, + [fixture.productionV3ActionId], + ); + + expect(await readParityMismatches(pool)).toEqual([ + { + direction: "rollup_extra_or_mismatched", + source: "legacy", + action_id: fixture.productionV3ActionId, + date_utc: "2026-01-01", + unique_count: "5", + }, + ]); + + await rollupRange("2026-01-01", "2026-01-01"); + + expect(await readParityMismatches(pool)).toEqual([]); + expect(await rolledRowCount()).toBe(0); + }); +}); +// #endregion diff --git a/web/tests/world-id-analytics/run-fresh-stack.sh b/web/tests/world-id-analytics/run-fresh-stack.sh new file mode 100755 index 000000000..eb289766e --- /dev/null +++ b/web/tests/world-id-analytics/run-fresh-stack.sh @@ -0,0 +1,163 @@ +#!/usr/bin/env bash +set -euo pipefail + +test_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +web_root="$(cd "${test_root}/../.." && pwd)" +repository_root="$(cd "${web_root}/.." && pwd)" +compose_file="${test_root}/docker-compose.yaml" +compose_project="wia_contract_${PPID}_$RANDOM" + +export WIA_REPOSITORY_ROOT="${repository_root}" + +cleanup() { + docker compose --project-name "${compose_project}" --file "${compose_file}" \ + down --volumes --remove-orphans >/dev/null 2>&1 || true +} +trap cleanup EXIT INT TERM + +docker compose --project-name "${compose_project}" --file "${compose_file}" \ + up --detach --wait + +postgres_binding="$( + docker compose --project-name "${compose_project}" --file "${compose_file}" \ + port postgres 5432 +)" +hasura_binding="$( + docker compose --project-name "${compose_project}" --file "${compose_file}" \ + port hasura 8080 +)" +postgres_port="${postgres_binding##*:}" +hasura_port="${hasura_binding##*:}" +hasura_url="http://127.0.0.1:${hasura_port}" + +for attempt in $(seq 1 120); do + if curl --fail --silent "${hasura_url}/healthz" >/dev/null; then + break + fi + if [[ "${attempt}" == "120" ]]; then + docker compose --project-name "${compose_project}" --file "${compose_file}" logs + exit 1 + fi + sleep 0.5 +done + +metadata_status="$( + curl --fail --silent \ + --header "content-type: application/json" \ + --header "x-hasura-admin-secret: secret!" \ + --data '{"type":"get_inconsistent_metadata","args":{}}' \ + "${hasura_url}/v1/metadata" +)" +node -e ' + const status = JSON.parse(process.argv[1]); + if (status.is_consistent !== true || status.inconsistent_objects?.length) { + console.error(JSON.stringify(status, null, 2)); + process.exit(1); + } +' "${metadata_status}" + +migration_status="$( + docker compose --project-name "${compose_project}" --file "${compose_file}" \ + exec --no-TTY hasura hasura-cli migrate status \ + --project /hasura-project \ + --endpoint http://127.0.0.1:8080 \ + --admin-secret "secret!" \ + --database-name default \ + --disable-interactive \ + --no-color +)" +node -e ' + const fs = require("fs"); + const path = require("path"); + const root = process.argv[1]; + const status = process.argv[2]; + const directories = fs + .readdirSync(path.join(root, "hasura/migrations/default"), { + withFileTypes: true, + }) + .filter((entry) => entry.isDirectory()) + .map((entry) => entry.name); + const legacyUntracked = directories.filter((name) => /\s/.test(name)); + if ( + legacyUntracked.length !== 1 || + legacyUntracked[0] !== "1726177042301_add import all contacts" + ) { + console.error(`Unexpected CLI-untracked migration directories: ${legacyUntracked.join(", ")}`); + process.exit(1); + } + const expected = directories + .filter((name) => !/\s/.test(name)) + .map((name) => name.match(/^\d+/)?.[0]) + .filter(Boolean) + .sort(); + const present = status + .split(/\r?\n/) + .map((line) => line.match(/^(\d+)\s+\S+\s+Present\s+Present\s*$/)?.[1]) + .filter(Boolean) + .sort(); + if ( + expected.length === 0 || + expected.length !== present.length || + expected.some((version, index) => version !== present[index]) + ) { + console.error(status); + console.error(`Expected ${expected.length} checkout migrations, found ${present.length} fully applied`); + process.exit(1); + } +' "${repository_root}" "${migration_status}" + +export PGHOST=127.0.0.1 +export PGPORT="${postgres_port}" +export PGDATABASE=postgres +export PGUSER=postgres +export PGPASSWORD=password +export DATABASE_URL="postgres://postgres:password@127.0.0.1:${postgres_port}/postgres" +export NEXT_PUBLIC_GRAPHQL_API_URL="${hasura_url}/v1/graphql" +export HASURA_GRAPHQL_ADMIN_SECRET="secret!" +export INTERNAL_ENDPOINTS_SECRET="world-id-analytics-test-secret" +# Must match the stack's HASURA_GRAPHQL_JWT_SECRET so a service JWT minted by +# the real route is accepted by this Hasura. +export HASURA_GRAPHQL_JWT_SECRET='{"key":"unsafe_AnEsZxveGsAWoENHGAnEsZxveGsAvxgMtDq9UxgTsDq9UxgTsNHGWoENIoJ","type":"HS512"}' +export JWT_ISSUER="https://world-id-analytics.test" +export WORLD_ID_ANALYTICS_ROLLUP_ENABLED=true +export WIA_HASURA_METADATA_URL="${hasura_url}/v1/metadata" +export WIA_MIGRATIONS_PROVEN=true +export WIA_FRESH_STACK=true +export WIA_COMPOSE_FILE="${compose_file}" +export WIA_COMPOSE_PROJECT="${compose_project}" + +docker compose --project-name "${compose_project}" --file "${compose_file}" \ + exec --no-TTY postgres \ + psql \ + --username postgres \ + --dbname postgres \ + --no-psqlrc \ + --file - \ + < "${repository_root}/hasura/operations/world-id-analytics/create-nullifier-created-at-index.sql" + +cd "${web_root}" +if [[ "${1:-}" == "--smoke" ]]; then + npx jest tests/world-id-analytics/stack-smoke.test.ts --runInBand + exit 0 +fi + +if [[ "${1:-}" == "--release-gate" ]]; then + npx jest \ + tests/world-id-analytics/stack-smoke.test.ts \ + tests/world-id-analytics/window-rollup.test.ts \ + tests/world-id-analytics/rollup-parity.test.ts \ + tests/world-id-analytics/index-build-locking.test.ts \ + tests/world-id-analytics/cron-and-rollout.test.ts \ + tests/world-id-analytics/end-to-end-release.test.ts \ + --runInBand + exit 0 +fi + +npx jest \ + tests/world-id-analytics/stack-smoke.test.ts \ + tests/world-id-analytics/window-rollup.test.ts \ + tests/world-id-analytics/rollup-parity.test.ts \ + tests/world-id-analytics/index-build-locking.test.ts \ + tests/world-id-analytics/cron-and-rollout.test.ts \ + tests/world-id-analytics/end-to-end-release.test.ts \ + --runInBand diff --git a/web/tests/world-id-analytics/run-sql-operation.ts b/web/tests/world-id-analytics/run-sql-operation.ts new file mode 100644 index 000000000..29ee58524 --- /dev/null +++ b/web/tests/world-id-analytics/run-sql-operation.ts @@ -0,0 +1,54 @@ +import { spawnSync } from "node:child_process"; +import { readFileSync } from "node:fs"; +import path from "node:path"; + +export const requiredEnv = (name: string) => { + const value = process.env[name]; + if (!value) throw new Error(`${name} is required by the fresh-stack harness`); + return value; +}; + +/** + * Runs one of the `hasura/operations/world-id-analytics` scripts the way an + * operator does: the file's own bytes, piped into psql inside the stack's + * Postgres container. + */ +export const runSqlOperation = (filename: string) => { + const repositoryRoot = requiredEnv("WIA_REPOSITORY_ROOT"); + const sql = readFileSync( + path.join(repositoryRoot, "hasura/operations/world-id-analytics", filename), + "utf8", + ); + + return spawnSync( + "docker", + [ + "compose", + "--project-name", + requiredEnv("WIA_COMPOSE_PROJECT"), + "--file", + requiredEnv("WIA_COMPOSE_FILE"), + "exec", + "--no-TTY", + "postgres", + "psql", + "--username", + "postgres", + "--dbname", + "postgres", + "--no-psqlrc", + "--set=ON_ERROR_STOP=1", + "--file", + "-", + ], + { + encoding: "utf8", + input: sql, + maxBuffer: 10 * 1024 * 1024, + timeout: 120_000, + }, + ); +}; + +export const commandOutput = (result: ReturnType) => + `${result.stdout}\n${result.stderr}`; diff --git a/web/tests/world-id-analytics/stack-smoke.test.ts b/web/tests/world-id-analytics/stack-smoke.test.ts new file mode 100644 index 000000000..707dce540 --- /dev/null +++ b/web/tests/world-id-analytics/stack-smoke.test.ts @@ -0,0 +1,133 @@ +import { Pool } from "pg"; + +const pool = new Pool(); + +afterAll(async () => { + await pool.end(); +}); + +describe("World ID analytics isolated fresh-stack harness", () => { + it("runs only when the isolated harness supplied its connection", () => { + expect(process.env.WIA_FRESH_STACK).toBe("true"); + expect(process.env.WIA_MIGRATIONS_PROVEN).toBe("true"); + expect(process.env.PGHOST).toBe("127.0.0.1"); + expect(process.env.NEXT_PUBLIC_GRAPHQL_API_URL).toMatch( + /^http:\/\/127\.0\.0\.1:\d+\/v1\/graphql$/, + ); + }); + + it("exposes migrated schema from the beginning through the latest domain", async () => { + const result = await pool.query<{ relation: string | null }>( + `SELECT to_regclass(name)::text AS relation + FROM unnest(ARRAY[ + 'public.team', + 'public.app', + 'public.action', + 'public.nullifier', + 'public.rp_registration', + 'public.action_v4', + 'public.nullifier_v4', + 'public.app_reviews' + ]) AS name`, + ); + + expect(result.rows.every((row) => row.relation !== null)).toBe(true); + await expect( + pool.query("SELECT id FROM public.app LIMIT 0"), + ).resolves.toEqual( + expect.objectContaining({ command: "SELECT", rowCount: 0 }), + ); + await expect( + pool.query( + "SELECT can_import_all_contacts FROM public.app_metadata LIMIT 0", + ), + ).resolves.toEqual( + expect.objectContaining({ command: "SELECT", rowCount: 0 }), + ); + }); + + it("provisions valid created_at indexes for both nullifier sources", async () => { + // The migration deliberately builds neither index; the runner's + // out-of-band create-nullifier-created-at-index.sql step must. + const result = await pool.query<{ + index_name: string; + indisready: boolean; + indisvalid: boolean; + source_table: string; + }>(` + SELECT + index_relation.relname AS index_name, + source_relation.relname AS source_table, + definition.indisready, + definition.indisvalid + FROM pg_index AS definition + JOIN pg_class AS index_relation + ON index_relation.oid = definition.indexrelid + JOIN pg_namespace AS index_schema + ON index_schema.oid = index_relation.relnamespace + JOIN pg_class AS source_relation + ON source_relation.oid = definition.indrelid + WHERE index_schema.nspname = 'public' + AND index_relation.relname IN ( + 'nullifier_created_at_idx', + 'nullifier_v4_created_at_idx' + ) + ORDER BY index_relation.relname + `); + + expect(result.rows).toEqual([ + { + index_name: "nullifier_created_at_idx", + source_table: "nullifier", + indisready: true, + indisvalid: true, + }, + { + index_name: "nullifier_v4_created_at_idx", + source_table: "nullifier_v4", + indisready: true, + indisvalid: true, + }, + ]); + }); + + it("applies consistent metadata that answers a real GraphQL query", async () => { + const metadataResponse = await fetch( + process.env.WIA_HASURA_METADATA_URL as string, + { + method: "POST", + headers: { + "content-type": "application/json", + "x-hasura-admin-secret": process.env + .HASURA_GRAPHQL_ADMIN_SECRET as string, + }, + body: JSON.stringify({ + type: "get_inconsistent_metadata", + args: {}, + }), + }, + ); + expect(metadataResponse.status).toBe(200); + expect(await metadataResponse.json()).toEqual({ + is_consistent: true, + inconsistent_objects: [], + }); + + const graphResponse = await fetch( + process.env.NEXT_PUBLIC_GRAPHQL_API_URL as string, + { + method: "POST", + headers: { + "content-type": "application/json", + "x-hasura-admin-secret": process.env + .HASURA_GRAPHQL_ADMIN_SECRET as string, + }, + body: JSON.stringify({ + query: "query StackProof { app(limit: 0) { id } }", + }), + }, + ); + expect(graphResponse.status).toBe(200); + expect(await graphResponse.json()).toEqual({ data: { app: [] } }); + }); +}); diff --git a/web/tests/world-id-analytics/window-rollup.test.ts b/web/tests/world-id-analytics/window-rollup.test.ts new file mode 100644 index 000000000..f6a5ee340 --- /dev/null +++ b/web/tests/world-id-analytics/window-rollup.test.ts @@ -0,0 +1,361 @@ +import { Pool } from "pg"; +import { + fixture, + insertV3Nullifier, + insertV4Nullifier, + resetFixture, + seedFixture, +} from "./fresh-stack-fixture"; + +const pool = new Pool(); +const advisoryLock: [number, number] = [533_214, 43]; + +const utcMidnight = (daysAgo: number) => { + const now = new Date(); + return new Date( + Date.UTC( + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() - daysAgo, + ), + ); +}; + +const atUtc = (daysAgo: number, hours: number, minutes: number) => { + const date = utcMidnight(daysAgo); + date.setUTCHours(hours, minutes, 0, 0); + return date.toISOString(); +}; + +const utcDate = (daysAgo: number) => + utcMidnight(daysAgo).toISOString().slice(0, 10); + +const rollup = async (fromDate: string | null, toDate: string | null) => { + const result = await pool.query<{ date_utc: string; unique_count: string }>( + `SELECT date_utc::text, unique_count::text + FROM public.rollup_world_id_analytics($1::date, $2::date)`, + [fromDate, toDate], + ); + return result.rows; +}; + +const readLegacyDaily = async () => + ( + await pool.query<{ date_utc: string; unique_count: string }>( + `SELECT date_utc::text, unique_count::text + FROM public.action_legacy_stats_daily + ORDER BY date_utc`, + ) + ).rows; + +const readV4Daily = async () => + ( + await pool.query<{ date_utc: string; unique_count: string }>( + `SELECT date_utc::text, unique_count::text + FROM public.action_v4_stats_daily + ORDER BY date_utc`, + ) + ).rows; + +const insertStaleRolledRow = (dateUtc: string, count: number) => + pool.query( + `INSERT INTO public.action_legacy_stats_daily ( + action_id, date_utc, unique_count + ) VALUES ($1, $2, $3)`, + [fixture.productionV3ActionId, dateUtc, count], + ); + +const barrierLock: [number, number] = [812_404, 72]; + +const installPauseTrigger = async () => { + await pool.query(` + CREATE FUNCTION public.contract_pause_window_rollup() + RETURNS trigger LANGUAGE plpgsql AS $$ + BEGIN + PERFORM pg_advisory_xact_lock(${barrierLock[0]}, ${barrierLock[1]}); + RETURN NEW; + END + $$; + + CREATE TRIGGER contract_pause_window_rollup + BEFORE INSERT ON public.action_legacy_stats_daily + FOR EACH ROW EXECUTE FUNCTION public.contract_pause_window_rollup(); + `); +}; + +const removePauseTrigger = async () => { + await pool.query(` + DROP TRIGGER IF EXISTS contract_pause_window_rollup + ON public.action_legacy_stats_daily; + DROP FUNCTION IF EXISTS public.contract_pause_window_rollup(); + `); +}; + +const waitForLockWaiter = async ( + predicateSql: string, + values: Array, +) => { + for (let attempt = 0; attempt < 1_000; attempt += 1) { + const result = await pool.query<{ waiting: boolean }>(predicateSql, values); + if (result.rows[0].waiting) return; + } + throw new Error("never reached the deterministic lock barrier"); +}; + +beforeAll(() => { + if (process.env.WIA_FRESH_STACK !== "true") { + throw new Error( + "Run through the isolated World ID analytics fresh-stack harness", + ); + } +}); + +beforeEach(async () => { + await removePauseTrigger(); + await resetFixture(pool); + await seedFixture(pool); +}); + +afterAll(async () => { + await removePauseTrigger(); + await resetFixture(pool); + await pool.end(); +}); + +jest.setTimeout(150_000); + +// #region Window semantics +describe("World ID analytics [window rollup]", () => { + it("rebuilds only the trailing window when called without dates", async () => { + await insertV3Nullifier(pool, { + id: "nullifier_v3_recent", + createdAt: new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString(), + }); + await insertV3Nullifier(pool, { + id: "nullifier_v3_old", + createdAt: atUtc(3, 12, 0), + }); + // A stale rolled day outside the window must survive untouched: the + // default window never reaches back that far. + await insertStaleRolledRow(utcDate(5), 9); + + const rolled = await rollup(null, null); + + expect(rolled.length).toBeGreaterThanOrEqual(1); + const daily = await readLegacyDaily(); + expect(daily).toContainEqual({ date_utc: utcDate(5), unique_count: "9" }); + expect(daily).not.toContainEqual( + expect.objectContaining({ date_utc: utcDate(3) }), + ); + expect( + daily + .filter((row) => row.date_utc > utcDate(2)) + .reduce((sum, row) => sum + Number(row.unique_count), 0), + ).toBe(1); + }); + + it("rebuilds exactly the inclusive dated range and nothing else", async () => { + for (const [id, daysAgo, hours, minutes] of [ + ["nullifier_v3_range_ten", 10, 12, 0], + ["nullifier_v3_range_nine_early", 9, 0, 30], + ["nullifier_v3_range_nine_late", 9, 23, 30], + ["nullifier_v3_range_eight", 8, 0, 30], + ["nullifier_v3_range_seven", 7, 12, 0], + ] as const) { + await insertV3Nullifier(pool, { + id, + createdAt: atUtc(daysAgo, hours, minutes), + }); + } + + const rolled = await rollup(utcDate(9), utcDate(8)); + + expect(rolled).toEqual([ + { date_utc: utcDate(9), unique_count: "2" }, + { date_utc: utcDate(8), unique_count: "1" }, + ]); + expect(await readLegacyDaily()).toEqual([ + { date_utc: utcDate(9), unique_count: "2" }, + { date_utc: utcDate(8), unique_count: "1" }, + ]); + }); + + it("combines both sources in the returned per-day totals", async () => { + await insertV3Nullifier(pool, { + id: "nullifier_v3_combined_one", + createdAt: atUtc(6, 9, 0), + }); + await insertV3Nullifier(pool, { + id: "nullifier_v3_combined_two", + createdAt: atUtc(6, 10, 0), + }); + await insertV4Nullifier(pool, { + id: "nullifier_v4_combined", + createdAt: atUtc(6, 11, 0), + }); + + const rolled = await rollup(utcDate(6), utcDate(6)); + + expect(rolled).toEqual([{ date_utc: utcDate(6), unique_count: "3" }]); + expect(await readV4Daily()).toEqual([ + { date_utc: utcDate(6), unique_count: "1" }, + ]); + }); + + it("never counts the racing five minutes even for a dated window", async () => { + // Derive the settled row's UTC day from the row itself: right after UTC + // midnight "now - 20 minutes" is still yesterday. + const settledAt = new Date(Date.now() - 20 * 60 * 1000); + await insertV3Nullifier(pool, { + id: "nullifier_v3_settled", + createdAt: settledAt.toISOString(), + }); + await insertV3Nullifier(pool, { + id: "nullifier_v3_racing", + createdAt: new Date(Date.now() - 60 * 1000).toISOString(), + }); + + await rollup(utcDate(1), utcDate(0)); + + expect(await readLegacyDaily()).toEqual([ + { + date_utc: settledAt.toISOString().slice(0, 10), + unique_count: "1", + }, + ]); + }); + + it("returns the same result when the same window is rerun", async () => { + await insertV3Nullifier(pool, { + id: "nullifier_v3_idempotent", + createdAt: atUtc(4, 12, 0), + }); + + const first = await rollup(utcDate(4), utcDate(4)); + const second = await rollup(utcDate(4), utcDate(4)); + + expect(second).toEqual(first); + expect(await readLegacyDaily()).toEqual([ + { date_utc: utcDate(4), unique_count: "1" }, + ]); + }); + + it("sweeps rolled rows whose raw rows no longer exist", async () => { + await insertStaleRolledRow(utcDate(6), 5); + + const rolled = await rollup(utcDate(6), utcDate(6)); + + expect(rolled).toEqual([]); + expect(await readLegacyDaily()).toEqual([]); + }); + + it("does nothing for a window entirely inside the unsafe zone", async () => { + const tomorrow = utcMidnight(-1).toISOString().slice(0, 10); + + const rolled = await rollup(tomorrow, tomorrow); + + expect(rolled).toEqual([]); + }); + + it("rejects half-supplied and reversed windows", async () => { + await expect(rollup(utcDate(3), null)).rejects.toThrow( + "from_date and to_date must be supplied together", + ); + await expect(rollup(utcDate(3), utcDate(5))).rejects.toThrow("is after"); + }); + + it("lets a concurrent action deletion wait out a re-rolled window instead of deadlocking", async () => { + // The deadlock precondition: the window already holds rolled rows, so + // the run's child-row deletes lock something a deletion cascade wants. + await insertV3Nullifier(pool, { + id: "nullifier_v3_deadlock_regression", + createdAt: atUtc(6, 12, 0), + }); + await rollup(utcDate(6), utcDate(6)); + await installPauseTrigger(); + + const blocker = await pool.connect(); + const deleter = await pool.connect(); + try { + await blocker.query("SELECT pg_advisory_lock($1, $2)", barrierLock); + // The re-run pre-locks the parent, deletes the rolled rows, and pauses + // at its first recount insert — exactly where the cycle used to form. + const rerun = rollup(utcDate(6), utcDate(6)); + await waitForLockWaiter( + `SELECT EXISTS ( + SELECT 1 FROM pg_locks + WHERE locktype = 'advisory' + AND classid::bigint = $1 AND objid::bigint = $2 + AND NOT granted + ) AS waiting`, + barrierLock, + ); + + await deleter.query("SET statement_timeout = '10s'"); + const deletion = deleter + .query("DELETE FROM public.action WHERE id = $1", [ + fixture.productionV3ActionId, + ]) + .then( + (result) => ({ ok: true as const, rows: result.rowCount }), + (error: { code?: string }) => ({ + ok: false as const, + code: error.code, + }), + ); + // The deletion must be parked on the parent's KEY SHARE lock — not + // deadlocked — while the rollup is still mid-transaction. + await waitForLockWaiter( + `SELECT EXISTS ( + SELECT 1 FROM pg_locks + WHERE locktype = 'tuple' AND NOT granted + AND relation = 'public.action'::regclass + ) OR EXISTS ( + SELECT 1 FROM pg_stat_activity + WHERE wait_event_type = 'Lock' + AND query LIKE 'DELETE FROM public.action%' + ) AS waiting`, + [], + ); + + await blocker.query("SELECT pg_advisory_unlock($1, $2)", barrierLock); + await expect(rerun).resolves.toEqual([ + { date_utc: utcDate(6), unique_count: "1" }, + ]); + await expect(deletion).resolves.toEqual({ ok: true, rows: 1 }); + // The cascade swept the freshly rolled rows with the action. + expect(await readLegacyDaily()).toEqual([]); + } finally { + await blocker.query("SELECT pg_advisory_unlock_all()"); + blocker.release(); + deleter.release(); + } + }); + + it("blocks behind a concurrent run instead of silently skipping", async () => { + const holder = await pool.connect(); + const waiter = await pool.connect(); + + try { + await holder.query("BEGIN"); + await holder.query("SELECT pg_advisory_xact_lock($1, $2)", advisoryLock); + + await waiter.query("SET statement_timeout = '1500ms'"); + // Cancelled while *waiting* proves the call queues rather than erroring + // or proceeding; the caller's request timeout is the real-world bound. + await expect( + waiter.query( + `SELECT * FROM public.rollup_world_id_analytics($1::date, $2::date)`, + [utcDate(3), utcDate(3)], + ), + ).rejects.toMatchObject({ code: "57014" }); + } finally { + await holder.query("ROLLBACK").catch(() => undefined); + holder.release(); + waiter.release(); + } + + await expect(rollup(utcDate(3), utcDate(3))).resolves.toEqual([]); + }); +}); +// #endregion